Android:EditText 的搜索按钮而不是 Enter
我有以下编辑文本:
<EditText
android:paddingTop="10dip" android:paddingBottom="10dip"
android:paddingRight="10dip" android:paddingLeft="10dip"
android:id="@+id/myBookSearchEditTextId"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@color/white"
android:saveEnabled="true"
android:scrollHorizontally="true"
android:selectAllOnFocus="true"
android:imeOptions="actionSearch"
android:text="Search"
android:textColor="@color/black" >
<requestFocus />
</EditText>
为什么我仍然在键盘上看到 Enter 键而不是搜索键?
我发现了一些东西 - 似乎在使用软键盘时有一个问题...... 正如在网上找到的那样 - 可能需要在编辑文本的 OnClick 中获取 InputmethodManager:
...Onclick(...)
{
InputmethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0 );
}
I have the following for Edit Text:
<EditText
android:paddingTop="10dip" android:paddingBottom="10dip"
android:paddingRight="10dip" android:paddingLeft="10dip"
android:id="@+id/myBookSearchEditTextId"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@color/white"
android:saveEnabled="true"
android:scrollHorizontally="true"
android:selectAllOnFocus="true"
android:imeOptions="actionSearch"
android:text="Search"
android:textColor="@color/black" >
<requestFocus />
</EditText>
Why I still see on the keyboard the Enter key instead of the Search Key?
I found something - it seems like when using softkeyboard it has a porblem...
As found in the web - maybe needs to get InputmethodManager in the OnClick on the edittext:
...Onclick(...)
{
InputmethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0 );
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个.. editTx.setImeActionLabel("搜索",EditorInfo.IME_ACTION_SEARCH);而不是在布局 xml 中。
try this.. editTx.setImeActionLabel("Search",EditorInfo.IME_ACTION_SEARCH); instead of in layout xml.
在添加
inputType
之前,我的搜索图标才显示。这两个都需要:
和
My Search icon didn't show up till I add the
inputType
.Both of these are require:
and