0
我想在此屬性中編程方式創建一個EditText:製作一個EditText對象只接受數值
android:inputType="number|numberSigned|numberDecimal"
總之我想它僅接受數值。我如何設置我的EditText對象?
我想在此屬性中編程方式創建一個EditText:製作一個EditText對象只接受數值
android:inputType="number|numberSigned|numberDecimal"
總之我想它僅接受數值。我如何設置我的EditText對象?
爲的inputType相應的方法是
public void setInputType (int type)
因此,像下面應該工作(未經測試)
setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_SIGNED | InputType.TYPE_NUMBER_FLAG_DECIMAL)