51

请解释一下有关软键盘的问题。例如,我在我的活动或对话片段或片段活动上有一个 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 才能获得焦点并出现键盘。另一个活动是不同的,当它出现在屏幕上时,键盘会在没有任何帮助的情况下加载。我以为

< 请求焦点 />

意味着 EditText 将被聚焦并出现键盘,但我错了。

我应该如何管理哪些组件将获得焦点并且键盘将自动出现。

4

9 回答 9

75

我认为这是一个错误或一个功能,它试图将整个活动呈现给你,而不是一开始用软键盘遮住它。我已经搜索过一次有关此的信息,但不幸的是没有发现任何来自真正可靠的来源。

无论如何,要显示软键盘,您可以这样做:

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;
}
于 2013-02-07T19:37:37.193 回答
32

打开 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" 如上所示

于 2013-02-07T19:33:42.500 回答
18

我知道这已经得到了回答,但我找到了一种方法来做接受的答案,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;
于 2015-04-28T15:33:31.570 回答
9

添加到 onCreate 或 onStart();

myView.requestFocus();
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
于 2013-02-07T19:32:31.943 回答
5

试试这个

@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);
      }
   });
 }
于 2014-05-12T12:53:28.370 回答
1

对我来说,像这样在清单中添加这一行android:windowSoftInputMode="stateVisible"

**<activity
            android:name=".mmmmm.zzzzzzz.yyyyyy.xxxxxx"
            android:windowSoftInputMode="stateVisible"
            android:label="@string/title_activity_print_recharge"></activity>**

这就是我解决它的方法

于 2017-11-09T07:21:01.330 回答
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

于 2016-09-23T10:32:58.487 回答
0

我推荐以下链接,我按照链接下面提到的步骤进行操作,效果很好,答案非常好,只需非常简单的步骤即可完成。功劳归于回答者。希望它能帮助那些在对话活动中搞砸键盘弹出的人。

DialogFragment 和强制显示键盘

于 2017-01-11T13:23:53.577 回答
0

这就是我所做的,它工作得很好......

您可以使用

实用程序.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()

method belongs to the activity, which hold the EditView which I want to edit and therefore I need the soft keyboard..

HTH

于 2018-03-08T16:39:05.823 回答