Android:EditText 的搜索按钮而不是 Enter

发布于 2024-12-22 05:16:03 字数 1020 浏览 0 评论 0原文

我有以下编辑文本:

    <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我的影子我的梦 2024-12-29 05:16:03

试试这个.. editTx.setImeActionLabel("搜索",EditorInfo.IME_ACTION_SEARCH);而不是在布局 xml 中。

try this.. editTx.setImeActionLabel("Search",EditorInfo.IME_ACTION_SEARCH); instead of in layout xml.

倾城月光淡如水﹏ 2024-12-29 05:16:03

在添加 inputType 之前,我的搜索图标才显示。

这两个都需要:

android:imeOptions="actionSearch"

android:inputType="text"

My Search icon didn't show up till I add the inputType.

Both of these are require:

android:imeOptions="actionSearch"

and

android:inputType="text"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文