在对话框中使android键盘自动弹出

时间:2014-07-11 08:53:41

标签: android android-layout android-dialog android-keypad

我有一个对话框,提示用户输入一个4位数的针脚。

我希望在显示此对话框片段弹出窗口时自动显示键盘

我尝试了以下但是我没有回来

    <EditText
    android:id="@+id/entercode_dialog_editText_code"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:ems="10"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:gravity="center_horizontal"
    android:inputType="numberPassword" >

    <requestFocus />
</EditText>

3 个答案:

答案 0 :(得分:1)

尝试使用此功能显示KeyBoard:

InputMethodManager imm = (InputMethodManager)getactivity().
                             getSystemService(Context.INPUT_METHOD_SERVICE);

solutiuon1:

if(imm != null){
    imm.toggleSoftInput(0, InputMethodManager.SHOW_IMPLICIT);
}

溶液2:

if(imm != null){
imm.showSoftInput(ed, 0);
} 

其中ed是您的edittext


另一个解决方案(尚未尝试) 在初始化对话框之后

getDialog().getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);

答案 1 :(得分:1)

使用: -

myEditText.setOnFocusChangeListener( new View.OnFocusChangeListener() {
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        if (hasFocus) {
            getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
        }
    }
});

答案 2 :(得分:0)

要显示软键盘,您可以使用

 EditText yourEditText= (EditText) findViewById(R.id.et);  
 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
 imm.showSoftInput(yourEditText, InputMethodManager.SHOW_IMPLICIT);

要关闭它,您可以使用

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(yourEditText.getWindowToken(), 0);

希望可以帮助你