gpt4 book ai didi

java - onEditorAction 未在 fragment 中调用

转载 作者:行者123 更新时间:2023-12-01 11:43:56 28 4
gpt4 key购买 nike

我使用 Android Studio 抽屉导航预设生成了此 Activity ,因此 EditText 位于 fragment 内。我想做的是在按下键盘上的“发送”按钮后创建一个通知。当我单击按钮时没有任何反应,onEditorAction 没有被调用。有谁知道如何解决这个问题吗?

inflatedView = getLayoutInflater().inflate(R.layout.fragment_main, null);
EditText noteText = (EditText) inflatedView.findViewById(R.id.write_note);

noteText.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;

if (actionId == EditorInfo.IME_ACTION_SEND) {
createNotification();
handled = true;
}
return handled;
}
});

fragment_main.xml

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/write_note"
android:background="@drawable/edit_text_outline"
android:layout_below="@+id/textView"
android:textSize="22sp"
android:textColor="#ffffffff"
android:textColorHint="#c8ffffff"
android:layout_marginTop="42dp"
android:inputType="textAutoCorrect|textCapSentences"
android:imeOptions="actionSend"
android:singleLine="true"
android:hint="@string/edit_text_hint" />

最佳答案

这样做,请在edittext中设置“android:imeOptions=”actionSend”。

 noteText.setOnEditorActionListener(new TextView.OnEditorActionListener()
{
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event)
{
boolean handled = false;

if (actionId == EditorInfo.IME_ACTION_SEND)
{
createNotification();

handled = true;
}
return handled;
}
});

将其放入 xml 中,

 <EditText
android:id="@+id/test"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionSend"
android:singleLine="true" />

这对我有用。您可以使用如下代码进行计算后隐藏软键盘:

InputMethodManager imm= (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);

关于java - onEditorAction 未在 fragment 中调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29313630/

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