android editText 如何自动显示软键盘?

现在打开输入界面默认不显示
2024-12-01 21:39:40
推荐回答(3个)
回答1:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//隐藏软键盘
// imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
//显示软键盘
// imm.showSoftInputFromInputMethod(editView.getWindowToken(), 0);
//切换软键盘的显示与隐藏
imm.toggleSoftInputFromWindow(editView.getWindowToken(), 0, InputMethodManager.HIDE_NOT_ALWAYS);

回答2:

让edittext在这个界面开始是请求焦点。
在你的activity的onresume()中添加 xxx.requestFocus();
xxx为你的控件。

回答3:

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/hello_world" >