gpt4 book ai didi

Android 4.0.3软键盘上切换回车键和搜索键

转载 作者:行者123 更新时间:2023-11-30 04:03:39 26 4
gpt4 key购买 nike

我正在尝试让它工作:在我的 EditText 中的 XML 中,我有:

    android:imeActionLabel="Search"
android:imeOptions="actionSearch"

但它不起作用。在代码中

    search.setImeOptions(EditorInfo.IME_ACTION_SEARCH);

也不行。有什么线索吗?

最佳答案

试试这个

在你的 xml 文件中

<EditText
android:id="@+id/rechercheTextView"
android:layout_width="174dp"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:imeOptions="actionSearch"
android:inputType="text"
/>

在你的 Activity 中

EditText rechTxt = (EditText) findViewById(R.id.rechercheTextView);
rechTxt.setOnEditorActionListener(new OnEditorActionListener() {

public boolean onEditorAction(TextView v, int actionId,
KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_SEARCH) {

Toast.makeText(getApplicationContext(),"search",Toast.LENGTH_LONG).show();
return true;
}
return false;
}
});

关于Android 4.0.3软键盘上切换回车键和搜索键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12089337/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com