安卓软键盘的搜索

Posted layfork

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓软键盘的搜索相关的知识,希望对你有一定的参考价值。

 //软键盘的搜索按钮
        et_searchinput.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
                if (i == EditorInfo.IME_ACTION_SEARCH || i == EditorInfo.IME_ACTION_UNSPECIFIED) {
                    _initFirstRequest();
                    getData();
                }
                return false;
            }
        });
<tk.lingdang.com.myapplication.ui.ClearEditText
                android:id="@+id/et_searchinput"
                android:drawableLeft="@drawable/i_search_ipt_16_16"
                android:hint="请输入要搜索的商品名称"
                android:paddingLeft="15dp"
                android:layout_marginLeft="5dp"
                android:textSize="16sp"
                android:imeOptions="actionSearch"
                android:maxLines="1"
                android:singleLine="true"
                android:layout_weight="1"
                android:textColorHint="@color/searchInputHintColor"
                android:drawablePadding="10dp"
                android:background="@drawable/searcheditsharp"
                android:layout_width="0dp"
                android:layout_height="35dp" />

 

以上是关于安卓软键盘的搜索的主要内容,如果未能解决你的问题,请参考以下文章

按下返回键时隐藏软键盘

出现软键盘时如何避免只有BottomNavbar向上推

JS 解决安卓手机输入框被软键盘遮住的问题

JS 解决安卓手机输入框被软键盘遮住的问题

软输入键盘隐藏编辑文本

在片段替换上显示/隐藏 Android 软键盘