| setInputMethodMode() | ใช้กำหนด input method mode ให้กับ Object PopupWindow |
|---|
method:setInputMethodMode ( int mode )
return type:void
content:ใช้กำหนด input method mode ให้กับ Object PopupWindow
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); PopupWindow popup_window = new PopupWindow ( this ); popup_window.setInputMethodMode ( PopupWindow.INPUT_METHOD_NEEDED ); } }