| setText ( resId ) | ใช้กำหนด ข้อความ ให้กับ Object TextView |
|---|
method:setText ( int resid )
return type:void
content:ใช้กำหนด ข้อความ ให้กับ Object TextView
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); TextView text = new TextView ( this ); text.setText ( R.string.app_name ); setContentView ( text ); } }