赞
踩
(1)布局设置 : android:imeOptions=“actionSend”
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/ed_text"
android:hint="请输入文字"
android:background="@color/transparent"
android:maxLines="1"
android:textSize="16sp"
android:singleLine="true"
android:imeOptions="actionSend"
android:textColor="#999999"
android:textColorHint="#999999"
android:layout_marginStart="@dimen/dp_10"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_45"/>
(2)代码设置:
/** 输入法动作发送, 设置Ime选项(编辑信息.发送指令) */
mEditText.setImeOptions(EditorInfo.IME_ACTION_SEND);
mEditText.setOnEditorActionListener(new AppCompatEditText.OnEditorActionListener() { @Override @RequiresApi(api = Build.VERSION_CODES.M) public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { /** 关于编辑器动作 输入法动作发送,输入法动作完成, */ if (actionId == EditorInfo.IME_ACTION_SEND || actionId == EditorInfo.IME_ACTION_DONE || (event != null) && KeyEvent.KEYCODE_ENTER == event.getKeyCode() && KeyEvent.ACTION_DOWN == event.getAction()) { /** 获取用户输入的文字内容 */ String text = Objects.requireNonNull(ed_text.getText()).toString().trim(); //具体你需要执行的操作 //...... } //返回false以上的操作会执行两次,因为onEditorAction方法接受了false会表示尚未执行 //修改 return true,则回车之响应一次 return false; } });
android edittext 点击回车会响应两次?
由于Key有Down和Up事件,所以会执行两次
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。