gpt4 book ai didi

android - 如何使用 imeactionId 的值

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:58:18 26 4
gpt4 key购买 nike

我尝试将自己的值设置为 imeActionId,然后将其与 onEditorAction 中的 actionId 进行比较。但是方法中的actionId重复返回0。

<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text|textUri"
android:imeOptions="actionGo"
android:imeActionId="666"
android:imeActionLabel="google"/>

下面是我的onEditorAction:

et.setOnEditorActionListener(new OnEditorActionListener() {

@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
// TODO Auto-generated method stub
Log.v("myid iss", "" + actionId);

if(actionId == 666)
{
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse("http://" + v.getText().toString()));

imm.hideSoftInputFromInputMethod(v.getWindowToken(), InputMethodManager.HIDE_IMPLICIT_ONLY);
startActivity(i);
}
return false;
}
});

无论 XML 中的值如何,actionId 每次都会变为 0。如何使用我定义的 imeActionIdactionId 进行比较。

最佳答案

抱歉回复晚了。仍在发布我的答案以造福他人。实际上,每个 imeoptions 都有一个 unqiueId。为了执行您的任务,您可以使用以下工作代码。

editText.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_GO) {
//Perform your Actions here.

}
return handled;
}
});

更多信息可以引用这个LINK .希望你觉得这个答案有用。

关于android - 如何使用 imeactionId 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24839717/

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