欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

改变输入法键盘得样式,让其最后一个键子变成搜索,下一步,等等

程序员文章站 2022-07-15 14:59:36
...
//改变输入法键盘文字,进行监听,点击搜索
        et_search_contacts.setOnKeyListener(new View.OnKeyListener() {
            @Override
            public boolean onKey(View view, int keyCode, KeyEvent keyEvent) {
                if (keyCode == KeyEvent.KEYCODE_ENTER){
                    //业务代码
                    ToastUtils.showShort("dianle"+et_search_contacts.getText().toString());
                    EventBus.getDefault().postSticky(et_search_contacts.getText().toString());
                }
                return false;
            }
        });
<EditText
                android:id="@+id/et_search_contacts"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@null"
                android:hint="搜索文章、作者"
                android:textSize="@dimen/sp_14"
                android:textColor="#666666"
                android:singleLine="true"
                android:imeOptions="actionSearch"
                android:inputType="text"
                />

必须加

android:singleLine="true"
android:imeOptions="actionSearch"
android:inputType="text"

 

相关标签: a'