| isFocusable() | ใช้ตรวจสอบว่า Object PopupWindow สามารถได้รับ Focus ได้หรือไม่ |
|---|
method:isFocusable ( )
return type:boolean
content:ใช้ตรวจสอบว่า Object PopupWindow สามารถได้รับ Focus ได้หรือไม่
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); PopupWindow popup_window = new PopupWindow ( this ); if ( popup_window.isFocusable ( ) ) { Toast.makeText ( this, "PopupWindow can be focused", Toast.LENGTH_SHORT ).show ( ); } } }