Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change my password hint font, but I can't do it! Actually I use a snippet from this website, but it isn't work again!

XML file:

<EditText
    android:id="@+id/password"
    android:layout_margin="10dp"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/google_account"
    android:typeface="serif"
    android:hint="@string/password" />

Activity file:

EditText password = (EditText) findViewById(R.id.password_text);
password.setTransformationMethod(new PasswordTransformationMethod());
share|improve this question
use the android:inputType="textPassword" in your xml file.. – t0mm13b Jun 28 '12 at 23:28
What exactly are you asking? How to display password text, as in ****? If so: android:inputType="textPassword" – Cruceo Jun 28 '12 at 23:28
From what I understand, he is asking how to change the hint font, which is "boxy" by default for an edittext password... – Kgrover Jun 28 '12 at 23:29
t0mm13b: I do it. But still not work. – Vahid Javaherifar Jun 28 '12 at 23:30
Cruceo: I do this method. But not work. – Vahid Javaherifar Jun 28 '12 at 23:31

2 Answers

up vote 2 down vote accepted

From what I understand, you are uncomfortable with the hint font in the password field below, and you want it to be the default font.

Try this:

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

By the way, my .xml file still has:

android:inputType="textPassword"
share|improve this answer
I do it. but actually not work :( – Vahid Javaherifar Jun 28 '12 at 23:32
try a combination of my answer and @K_Anas answer. Did you put android:password="true" in your xml? Also, try deleting android:typeface="serif" and make sure you have added android:inputType="textPassword" – Kgrover Jun 28 '12 at 23:33
Also, can you confirm that we're thinking of the same problem referencing the picture I added? – Kgrover Jun 28 '12 at 23:36
I do it. I give "The application has stopped" message! – Vahid Javaherifar Jun 28 '12 at 23:38
Is it depend on API level? I use API level 4. – Vahid Javaherifar Jun 28 '12 at 23:57
show 1 more comment

add android:password="true" android:inputType="textPassword" in your xml.

In Java, ALSO set the typeface and passwordMethod:

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

if you want to use custom fonts, create fonts folder under assets folder in your project and put your TTF into it and access it like below:

Typeface typeFace=Typeface.createFromAsset(getAssets(),"fonts/mytruetypefont.ttf");
password.setTypeface(typeFace);
share|improve this answer
Beat you to it ;) – Kgrover Jun 28 '12 at 23:30
@Kgrover I should have written it before you but the damn dialog "Are you a Human" appeared :(; anyway hope this will work for the OP – K_Anas Jun 28 '12 at 23:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.