16

ユーザーが3文字を入力した後に、いつものように提案を提供するAutoCompleteTextViewがあります。一度候補リストをタッチしてソフトキーボードを非表示にしたい。以下の表レイアウトで行ったことは、提案リスト以外の場所をクリックしたときにのみキーボードを非表示にします。

XML

<TableRow
    android:id="@+id/tableRow2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center" >

    <AutoCompleteTextView
        android:id="@+id/auto_insert_meds"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:ems="15"
        android:inputType="textVisiblePassword|textMultiLine"
        android:scrollHorizontally="false"
        android:text=""
        android:textSize="16sp" />
</TableRow>

ジャワ

TableLayout tbl = (TableLayout) findViewById(R.id.main_table);
tbl.setOnTouchListener(new OnTouchListener() {

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        in.hideSoftInputFromWindow(v.getWindowToken(), 0);
        return true;
    }
});

カスタム リストの XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/medlist_linear_layout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

        <TextView
        android:id="@+id/med_name"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollHorizontally="false"
        android:padding="3dp"
        android:textColor="@android:color/white" />

</LinearLayout>
4

12 に答える 12

26

を使用しOnItemClickListenerます。これがうまくいくことを願っています:)

AutoCompleteTextView text = (AutoCompleteTextView) findViewById(R.id.auto_insert_meds);

text.setOnItemClickListener(new OnItemClickListener() {

  @Override
  public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    in.hideSoftInputFromWindow(arg1.getWindowToken(), 0);

  }

});

更新しました

これを使って

in.hideSoftInputFromWindow(arg1.getApplicationWindowToken(), 0);

それ以外の -

in.hideSoftInputFromWindow(arg1.getWindowToken(), 0);
于 2013-02-04T01:29:19.490 に答える
17

チャクリ Reddy として提案:

それは私のために働いています

これ:

 in.hideSoftInputFromWindow(arg1.getWindowToken(), 0);

と:

 in.hideSoftInputFromWindow(arg1.getApplicationWindowToken(), 0);
于 2015-09-21T05:30:37.033 に答える
9

1) AutoCompleteTextView ドロップダウンの高さを MATCH_PARENT に変更します

setDropDownHeight(LinearLayout.LayoutParams.MATCH_PARENT);

2) AutoCompleteTextView アダプターの getView() をオーバーライドして、ソフト キーボードを無効にします。

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    View v = super.getView(position, convertView, parent);
    v.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            if (event.getAction() == MotionEvent.ACTION_DOWN) {
                InputMethodManager imm = (InputMethodManager) getActivity()
                        .getSystemService(
                                Context.INPUT_METHOD_SERVICE);
                imm.hideSoftInputFromWindow(
                        typeTextView.getWindowToken(), 0);
            }

            return false;
        }
    });

    return v;
}
于 2013-07-10T07:58:53.600 に答える
5

同様のスレッドでこのコードのチャンクを見つけました。それが役に立てば幸い:

    private void hideKeyboard() {   
        // Check if no view has focus:
        View view = this.getCurrentFocus();
        if (view != null) {
            InputMethodManager inputManager = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
            inputManager.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
        }
}

元の投稿へのリンク。それは受け入れられた答えではないことに注意してください。

于 2015-03-17T12:24:31.803 に答える
1

これが誰かを助ける場合に備えて、私は同様の状況にありました。

AutoCompleteTextView は、タイトル バーのない DialogFragment に表示されましたgetWindow().requestFeature(Window.FEATURE_NO_TITLE);onCreateDialog()

後に次の行を追加しFEATURE_NO_TITLE、結果リストをキーボード上に表示しました。

@Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        Dialog dialogo=super.onCreateDialog(savedInstanceState);
        dialogo.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
        dialogo.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
        return dialogo;
    }
于 2014-08-21T22:10:07.947 に答える
1
autoCompleteTextView.setInputType(InputType.TYPE_NULL);
于 2020-11-22T04:54:43.573 に答える
1
AutoCompleteTextView autoText= (AutoCompleteTextView) findViewById(R.id.auto_insert_meds);

autoText.setOnItemClickListener(new OnItemClickListener() {
  @Override
  public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    View view = this.getCurrentFocus();
    if (view != null) {
        InputMethodManager inputManager = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
        inputManager.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

    }
  }
});
于 2016-12-30T12:14:05.413 に答える
0

これを試してみてください..うまくいくでしょう..!!!

 AutoCompleteTextView auto_text = (AutoCompleteTextView)findViewById(R.id.auto_insert_meds);
 auto_text.setOnItemClickListener(new OnItemClickListener() {
 @Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) 
{
   InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
   in.hideSoftInputFromWindow(arg1.getApplicationWindowToken(), 0);
} });
于 2015-08-04T10:33:38.893 に答える
0

次のように、TextWatcher を使用して、ユーザーが少なくとも 3 文字 (ダウンロード API をトリガーする) を入力したことを検出しました。

    searchAutoComplete.addTextChangedListener(new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            // when the user has clicked on an item in the list, it will trigger onTextChanged.
            // To avoid querying the server and showing the dropdown again, use searchAutoComplete.isPerformingCompletion()
            if (!searchAutoComplete.isPerformingCompletion()){
                if (s != null && s.length() >= 3) {
                    downloadSearchResults(s.toString());
                } else {
                    searchAutoComplete.dismissDropDown();// hide dropdown after user has deleted characters and there's less than 3 visible
                }
            } else {
                // user has clicked on a list item so hide the soft keyboard
                InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                if (in != null) in.hideSoftInputFromWindow(searchAutoComplete.getApplicationWindowToken(), 0);
            }
        }

        @Override
        public void afterTextChanged(Editable s) { }
    });
于 2018-10-26T12:40:32.363 に答える
0

より良い解決策は、フォーカスを観察することです。OnItemClickListener でキーボードを非表示にします。項目を選択した場合にのみキーボードを非表示にしますが、前の要素 (EditText など) からのフォーカスが失われ、改行が失われますが、キーボードは表示されます。ここにKotlinのコード

yourAutoCompleteTextView.setOnFocusChangeListener { v, hasFocus ->
    if (hasFocus) {
        val inputMethodManager = v.context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        inputMethodManager.hideSoftInputFromWindow(v.applicationWindowToken, 0)
   }
}
于 2021-03-07T23:45:01.377 に答える