gpt4 book ai didi

安卓空格键不工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:52:48 25 4
gpt4 key购买 nike

在我的 Android 项目中,我限制了 Edittext 只允许使用 Alphanumeric 字符。我使用下面的代码 fragment 来实现这一点

    <EditText
android:id="@+id/edt_text"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
android:ems="10"
android:imeOptions="actionNext"
android:maxLength="8"
android:padding="5dp"
android:singleLine="true" />

但是在使用此代码时,如果我按 soft keypad 中显示的 Space Bar 键,它会充当 BackSpace 按钮并删除字符在 EditText 中。任何人都请帮我解决这个问题。

最佳答案

您也可以通过编程方式处理此问题。

mEditText1.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {

}

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (s.equals(" ")) {
mEditText1.getText().toString().trim();
}
}

@Override
public void afterTextChanged(Editable s) {

}
});

希望对您有所帮助。 :)

关于安卓空格键不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36445783/

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