| setHighlightColor() | ใช้กำหนด สีของข้อความ เมื่อมีการ เลือก ที่ Object TextView |
|---|
method:setHighlightColor ( int color )
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 ( "WelCome To BambooLabCode.com" ); text.setHighlightColor ( Color.GREEN ); text.setSelected( true ); setContentView ( text ); } }