Need number only soft keyboard?

前端 未结 7 1882
再見小時候
再見小時候 2020-12-19 01:42

Hi I need a soft keyboard with only numeric values 0 to 9 and Enter key. Shouldn\'t show anything other than these like . ,<

相关标签:
7条回答
  • 2020-12-19 02:36

    This solution uses numberPassword by overriding the default transformation method for the EditText to show characters instead of dots.

    <EditText
        android:id="@+id/userid"
        android:inputType="numberPassword"
        android:maxLength="6"
    />
    

    Add to OnCreate.

    // Numeric 6 character user id
    EditText input = findViewById(R.id.userid);
    
    // Process input and show characters instead of dots
    input.setTransformationMethod(SingleLineTransformationMethod.getInstance());
    

    0 讨论(0)
提交回复
热议问题