0

我希望 Android 键盘在我的活动启动时弹出。一个简单的谷歌搜索显示你只需要requestFocus我在 my 中执行的操作.xml,但它仍然没有弹出。我是否犯了任何导致这不起作用的小错误?

测试:

物理 4.1 模拟器 2.2

布局.xml:

<EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:ems="10"
        android:hint="To:"
        android:inputType="textPersonName" >

        <requestFocus />
    </EditText>
4

2 回答 2

2

这有效:

myEditText.setOnFocusChangeListener( new View.OnFocusChangeListener() {
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        if (hasFocus) {
            getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
        }
    }
});
于 2012-07-29T17:46:32.833 回答
0

试试这个代码:

EditText input = (EditText) findViewById(R.id.editText1);
InputMethodManager inputManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);         
inputManager.showSoftInput(input, InputMethodManager.SHOW_IMPLICIT);
于 2012-07-29T17:18:17.697 回答