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

EditText password = (EditText) findViewById(R.id.register_password_text);
password.setTypeface(Typeface.DEFAULT);
password.setTransformationMethod(new PasswordTransformationMethod());

猜你喜欢

转载自lizhuang.iteye.com/blog/2007767