- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试过滤 EditText 的输入字符以仅允许有效的浮点值。 (例如:“12,45”,只有一个逗号,...)。
为此,我使用 KeyListener (不要与 onKeyListener 或 textChangeListener 混淆。我想防止用户输入无效数据)。
在 Android 2.3.6 和 3.2 上,keyListener.filter() 和 keyListener.getAcceptedChars() 不会被调用,我可以引入任何字符(不限于 .getAcceptedChars())
我发现关于 keyListener 的文档很少。如果您有很好的示例或文档,我会非常感兴趣。
知道为什么这不起作用吗?
我做错了什么?
Activity 代码示例:
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(...);
setContentView(R.layout.editTextTest_lyt);
...
mEditTextTest = (EditText) findViewById(R.id.editTextTest);
mEditTextTest.setKeyListener(new NumberCommaDecimalKeyListenerTest());
...}
布局代码示例:
editTextTest_lyt.xml:
<EditText
android:id="@+id/editTextTest"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="1"
android:inputType="numberSigned|numberDecimal"
android:ems="5"
android:maxLength="9"
android:maxLines="1"
android:gravity="right|center_vertical"
android:imeOptions="actionNext"/>
KeyListener 代码示例:
public class NumberCommaDecimalKeyListenerTest extends NumberKeyListener {
private static final char[] mAccepted = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', ',' };
private static final boolean mSign = true;
private static final boolean mDecimal = true;
@Override
protected char[] getAcceptedChars()
{
Log.e("LODA", "KeylistenerTest.getAcceptedChars()"); // DONT show up in logs
return mAccepted;
}
public NumberCommaDecimalKeyListenerTest()
{ super();
Log.e("LODA", "CREATE KeylistenerTest"); // show up in logs
}
@Override
public int getInputType()
{
Log.e("LODA", "KeylistenerTest.getInputType()"); // show up in logs
int contentType = InputType.TYPE_CLASS_NUMBER;
if (mSign)
{
contentType |= InputType.TYPE_NUMBER_FLAG_SIGNED;
}
if (mDecimal)
{
contentType |= InputType.TYPE_NUMBER_FLAG_DECIMAL;
}
return contentType;
}
@Override
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend)
{
Log.e("LODA", "enter KeylistenerTest.filter"); // DONT show up in logs
// My logic will go here...
// if user pressed '.', is changed for ','
source = source.toString().replace(".", ",");
source = source.toString().replace("6", "9");
CharSequence out = super.filter(source, start, end, dest, dstart, dend);
return out;
}
}
最佳答案
查看 Android 文档,他们就 KeyListener
声明:
Note that for most cases this interface has been superceded by general soft input methods as defined by InputMethod; it should only be used for cases where an application has its own on-screen keypad and also wants to process hard keyboard events to match it
对于方法 getInputType()
:
If you return TYPE_NULL then no soft keyboard will provided. In other words, you must be providing your own key pad for on-screen input and the key listener will be used to handle input from a hard keyboard.
If you return any other value, a soft input method will be created when the user puts focus in the editor, which will provide a keypad and also consume hard key events. This means that the key listener will generally not be used, instead the soft input method will take care of managing key input as per the content type returned here.
因此,因为您返回了一个内容类型,所以 KeyListener 被忽略了。看起来这是不可能的,或者您找到解决方法了吗?
也许您可以创建自定义 TextWatcher相反,然后使用 EditText.addTextChangedListener(TextWatcher textWatcher) 在 EditText 上设置它.?
关于安卓 : KeyListener of EditText not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9082750/
/** Called when the user clicks the Send button */ public void sendMessage(View view) { Intent i
我已经编写了 EditText 的子类。这是那个子类: package com.package.foo; import android.content.Context; import android.
我有一个用户名和密码 XML 段 我希望当用户名字段到达第9个字符时光标焦点自动跳转到密码字段 我在看 Focus next textview automatically并且正在尝试: fin
我知道这类问题被问过很多次。但仍然没有人给出完美的答案。 我有问题: 我想从 EditText1 ** 移动到另一个 **EditText2 。我已经检测到editText1,但如何将光标移动到edi
我有 2 个 EditText(myEditText1 和 myEditText2) 我需要触摸 myEditText1 1.做一些生意[这里没有问题,需要申请的业务] 2. 然后请求焦点到 myEd
我想在用户输入 EditText 时将文本放入我的应用程序中的某个字符串中,并使用它在 Activity 中生动地显示它(在不同的 View 中......) - 就像谷歌的实时/即时搜索一样...
当我将文本插入到我的 EditText 字段时,文本本身与 EditText 的行之间存在异常间隙。这是我终端的打印屏幕,您可以在其中看到我正在谈论的这个差距,它被标记为红色。 我试过文本对齐和引力但
我的应用程序需要帮助。这是我的相对布局的 xml 文件,我需要在按下 Enter 键后跳转到下一个编辑文本。但是有一个问题,如果我正在写入 editTextKm 并按 Enter 键,它会跳转到 ed
Hello All 我已经将 onLongClickListener() 用于我的 EditText View ,但是每当我长时间单击 View 时,就会出现一个弹出窗口,不允许我执行我的操作onLo
EditText 快把我们逼疯了!真的! 我们的应用程序登录屏幕出现问题。它包含两个 EditText,但只有第一个(用户名)获得焦点,通过 SoftKeyboard 仅在触摸/单击用户名 EditT
如何在kotlin中获取editText并用toast显示。 var editTextHello = findViewById(R.id.editTextHello) 我试过了,但显示对象 Toast
我一直在浏览各种线索来解决这个问题,但我仍然感到困惑。当我将“adjustPan”应用于底部具有 EditText 的 Activity 时,UI 会正确向上推,但编辑文本会被底部的键盘稍微遮挡。经过
我有两个类:a 和 b。在类 a 中,我有一个线程,当变量 x 的值小于 1000 时,它会将变量 x 加一。在类 b(Activity 类)中,我有一个名为 ed 的 EditText。每当a类中x
今天我遇到了一个非常有趣的情况。 假设: EditText 从 XML 实例化。 EditText editText; editText = findViewByID(R.id.editT
有谁知道我的代码出了什么问题,我正在尝试比较编辑文本字段中的输入,以确保它们在创建帐户之前具有相同的值。 //compare the fields contents if(editT
制作一个简单的卡路里转换器。 这是图片中的问题。 我使用的是 Genymotion 模拟器。 这是我遇到问题的屏幕部分: 当我单击 EditText 数字字段时,数字键盘会出现 但是我必须单击下一个箭
全部 - 我试图隐藏 EditText B、C,直到 EditText A 中至少有一个字符。我尝试过使用文本观察器... EditText editText = (EditText) findVie
我正在努力完成 “Sam 的 24 小时 Android 应用程序开发技术”,但在某些时候我的昵称和电子邮件设置停止正确保存。它现在根本不保存昵称并将电子邮件保存到两者。我做了什么导致这个,我该如何解
我有一个 SharedPreferences,它保存来自一个 Activity 的 EditText 输入并在另一个 Activity 中显示字符串值。 当我在 EditText 字段中输入内容并按下
这一定是一个我可能会再次忽略的简单问题。这是我的问题我的 string.xml 上有一个字符串数组 Alabama Florida Los Angeles Virgi
我是一名优秀的程序员,十分优秀!