Need number only soft keyboard?

前端 未结 7 1907
再見小時候
再見小時候 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.

    
    

    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());
    

提交回复
热议问题