| getAutoLinkMask() | ใช้คืนค่า auto link mask ของ Object TextView |
|---|
method:getAutoLinkMask ( )
return type:int
content:ใช้คืนค่า auto link mask ของ 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" ); int link_mask = text.getAutoLinkMask ( ); setContentView ( text ); } }