android edittext password hint字体不同于别的字体的解决

EditText password = (EditText) findViewById(R.id.register_password_text);
password.setTypeface(Typeface.DEFAULT);
password.setTransformationMethod(new PasswordTransformationMethod());
此外需要去除xml中的 android:password="true"语句
来源于 stackoverflow

你可能感兴趣的:(android edittext password hint字体不同于别的字体的解决)