解决imeOptions=“actionDone”无效问题

先看效果图
这里写图片描述
对于这个问题整的挺难受的,国内很多网上的解决办法,感觉真的不靠谱,最后看到一个帖子,是老外写的,解决了。一句话:复写Edittext;
不多说,上代码:

package com.app.test.testedittextproject;

import android.content.Context;
import android.util.AttributeSet;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputConnection;
import android.widget.EditText;

/**
 * Created by liumengqiang on 17/6/7.
 */

public class ActionEditText extends EditText {
    public ActionEditText(Context context) {
        super(context);
    }

    public ActionEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ActionEditText(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
        InputConnection connection = super.onCreateInputConnection(outAttrs);
        int imeActions = outAttrs.imeOptions&EditorInfo.IME_MASK_ACTION;
        if ((imeActions&EditorInfo.IME_ACTION_DONE) != 0) {
            // clear the existing action
            outAttrs.imeOptions ^= imeActions;
            // set the DONE action
            outAttrs.imeOptions |= EditorInfo.IME_ACTION_DONE;
        }
        if ((outAttrs.imeOptions&EditorInfo.IME_FLAG_NO_ENTER_ACTION) != 0) {
            outAttrs.imeOptions &= ~EditorInfo.IME_FLAG_NO_ENTER_ACTION;
        }
        return connection;
    }
}

然后在XML 的EditText中添加 imeOptions=“actionDone”;

    <com.app.test.testedittextproject.ActionEditText
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:text="Hello World!"
        android:background="@color/colorPrimary"
        android:imeOptions="actionDone"
        android:layout_marginTop="50dp"/>

OK了!!!

如果设置了`android:imeOptions="actionSearch"`属性,但点击软键盘上的回车键时没有触发搜索操作,可能有以下几种原因: 1. 没有设置OnEditorActionListener监听器 在设置了`android:imeOptions="actionSearch"`属性后,需要设置OnEditorActionListener监听器来监听搜索按钮的点击事件。例如: ``` EditText editText = findViewById(R.id.edit_text); editText.setOnEditorActionListener(new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if (actionId == EditorInfo.IME_ACTION_SEARCH) { // 在这里处理搜索操作 return true; } return false; } }); ``` 2. 在布局文件中没有设置imeOptions属性 除了在EditText中设置`android:imeOptions="actionSearch"`属性,还需要在布局文件中设置相应的imeOptions属性。例如: ``` <EditText android:id="@+id/edit_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:imeOptions="actionSearch" android:inputType="text" /> ``` 3. 当前的软键盘不支持搜索按钮 某些软键盘可能不支持搜索按钮,因此需要使用支持搜索按钮的软键盘。可以尝试更换软键盘或者在代码中强制显示系统软键盘。例如: ``` InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT); ``` 4. 在手机上运行的Android版本低于5.0 `android:imeOptions="actionSearch"`属性是在Android 5.0中引入的,如果在低版本的Android系统上运行,可能不支持该属性。可以尝试使用其他方式来实现搜索功能,例如在输入框旁边添加搜索按钮。 希望这些解决方法可以帮助你解决`android:imeOptions="actionSearch"`无效问题
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值