请解释一下软键盘的问题。 例如,我在我的活动或对话片段或片段活动上有一个EditText,无论如何。 这是:
<EditText
android:id="@+id/edPswrd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPassword" >
<requestFocus />
</EditText>
当它第一次显示时,我看不到软键盘,必须按editText才能获得焦点并出现键盘。另一个活动是不同的,当它出现在屏幕上时,键盘在没有任何帮助的情况下加载。 我以为
&LT; requestFocus /&gt;
意味着EditText将被聚焦并且键盘将出现,但我错了。
我应该如何管理哪些组件会获得焦点,键盘将自动出现。
答案 0 :(得分:61)
我认为这是一个错误或一个功能,试图向您展示整个活动,而不是先用软键盘遮挡它。我曾经搜索过一次有关这方面的信息,但遗憾的是没有发现任何真正可靠的来源。
无论如何,要显示软键盘,您可以这样做:
EditText editText = (EditText)findViewById(R.id.edit_text_id);
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
我还看到这段代码应该强制软键盘在活动开始后变得可见,但从未尝试过:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);
如果你想隐藏软键盘,你可以这样做:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
希望有所帮助。
修改强>
对于DialogFragment
这应该有用:在onCreateView()
方法中执行此操作:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_id, container);
EditText editText = (EditText)view.findViewById(R.id.edit_text_id);
// show soft keyboard
editText.requestFocus();
getDialog().getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
return view;
}
答案 1 :(得分:30)
打开Android清单文件。
查找像这样的活动标签
<activity
android:name="com.example.framework.MainActivity"
android:label="@string/app_name"
android:windowSoftInputMode="stateVisible" //Add this line
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
添加android:windowSoftInputMode =“stateVisible”行,如上所示
答案 2 :(得分:15)
我知道这已经得到了解答,但我找到了一种方法,可以在onCreateDialog
而不是onCreateView
中完成接受的答案。完成构建器后,在返回之前,请执行以下操作:
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
// blah blah blah do builder stuff here like setTitle, setView, etc
Dialog d = builder.create();
这是重要的部分:
d.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
return d;
答案 3 :(得分:7)
添加到onCreate或onStart();
myView.requestFocus();
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
答案 4 :(得分:2)
试试这个
@Override
public void onResume() {
super.onResume();
final View v = getDialog().findViewById(R.id.edit_text_id);
v.post(new Runnable() {
@Override
public void run() {
v.requestFocus();
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) imm.showSoftInput(v, InputMethodManager.SHOW_IMPLICIT);
}
});
}
答案 5 :(得分:0)
这对我有用 -
创建您自己的EditText类并覆盖以下方法 -
public class FocussableEditText extends EditText {
public FocussableEditText(Context context) {
super(context);
}
public FocussableEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}
public FocussableEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public void onWindowFocusChanged(boolean hasWindowFocus) {
super.onWindowFocusChanged(hasWindowFocus);
if (hasWindowFocus) {
InputMethodManager imm = (InputMethodManager)getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(this, InputMethodManager.SHOW_FORCED);
}
}
}
http://debuggingisfun.blogspot.in/2014/08/android-show-soft-keyboard.html
答案 6 :(得分:0)
我推荐以下链接,我按照下面提到的步骤链接,完美的工作,这是非常好的答案,完成非常简单的步骤。信用归于回答的人。希望它能帮助那些搞砸键盘弹出对话活动的人。
答案 7 :(得分:0)
对我来说,在你的清单中添加这行 android:windowSoftInputMode =&#34; stateVisible&#34;
**<activity
android:name=".mmmmm.zzzzzzz.yyyyyy.xxxxxx"
android:windowSoftInputMode="stateVisible"
android:label="@string/title_activity_print_recharge"></activity>**
这就是我解决它的方式
答案 8 :(得分:0)
这就是我所做的,而且效果很好......
您可以使用
Utilities.showSoftKeyboard(...)
代码中的任何地方
public final class Utilities {
// Shows the soft keyboard. V on which view (typically EditText) to focus the keyboard input
public static void showSoftKeyboard(Activity activity, EditText editText)
{
InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(editText, InputMethodManager.SHOW_FORCED);
}
}
/**
* Called when user clicks/touches the search button
* @param v The clicked/touched view (EditText)
*/
protected void onSearchButtonClick(View v)
{
EditText seekTopic = (EditText) findViewById(R.id.SeekTopicBox);
setActivityContent(seekTopic.getText().toString());
}
onSearchButtonClick()
方法属于活动,它包含我想编辑的EditView,因此我需要软键盘..
HTH