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