标签: android
passCode1 = (EditText) findViewById(R.id.passCode1);
此编辑文本框的类型为数字密码我无法清除该值,并且只有数字限制才能输入0 - 9之间的数字
答案 0 :(得分:0)
numberPassword,textPassword,phone,date,text,.. 无论是什么,您都可以通过调用passCode1.setText(null);来清除字段
passCode1.setText(null);