3
有什麼辦法可以限制在運行系統中只有2位數字可以輸入EditText
。Android中的EditText?
例如:
如果我把我的android:inputType="numberDecimal"
,我進入它的價值。它接受值123.000000000000。但我想限制它像123.00
有沒有任何可能的方法來做到這一點?
有什麼辦法可以限制在運行系統中只有2位數字可以輸入EditText
。Android中的EditText?
例如:
如果我把我的android:inputType="numberDecimal"
,我進入它的價值。它接受值123.000000000000。但我想限制它像123.00
有沒有任何可能的方法來做到這一點?
看看下面的文章,可能的一些幫助你:
EditText txtInput = (EditText) findViewById(R.id.txtInput);
txtInput.addTextChangedListener(new TextWatcher()
{
public void afterTextChanged(Editable edt)
{
String temp = edt.toString();
int posDot = temp.indexOf(".");
if (posDot <= 0) return;
if (temp.length() - posDot - 1 > 2)
{
edt.delete(posDot + 3, posDot + 4);
}
}
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {}
public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {}
});
您可以使用TextWatcher將驗證添加到EditText
。