仅在具有KeyListener的EditText上实现数字整数

时间:2011-11-21 15:29:19

标签: android

我需要在setKeyListener参数上填写什么,以便它与XML上的android:numeric="integer"具有相同的行为?

段:

paymentAmount = new EditText(this);
paymentAmount.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, 
                                               LayoutParams.WRAP_CONTENT));
paymentAmount.setMinimumWidth(100);
paymentAmount.setKeyListener(???);

1 个答案:

答案 0 :(得分:1)

您是否看到EditText Input type Issue推荐使用InputFilterHere是我上一个问题的一个例子。