| setLinkTextColor() | ใช้กำหนดค่า สีของตัวอักษร ที่เป็น link ของ Object TextView |
|---|
method:setLinkTextColor ( int color )
return type:void
content:ใช้กำหนดค่า สีของตัวอักษร ที่เป็น link ของ 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.setLinkTextColor ( Color.ORANGE ); setContentView ( text ); } }