Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to make an EditText that shows an uneditable string at the end of the user input?

For example, I could have an EditText where I ask for the user's weight in pounds. I know the units has to be pounds, so if the user enters in "150", then the EditText shows "150 lb", where " lb" is the uneditable string appended at the end of user input.

I'm trying to extend the EditText class, but the TextView setText() method is final, so it can't be overridden, which makes things difficult.

share|improve this question
1  
You can use a onKey* listener that sets the text for the user. So no matter what they enter, you overwrite it with your modified text. – Spidy Jun 29 '11 at 19:35

1 Answer

up vote 0 down vote accepted

I think before the user tries to enter the data, use hint

<EditText android:hint="@string/hint" />

Once the user completely enters the text and presses the Done button or focuses on the next component on the UI, you can append Lb on the EditText.

Use onFocusChange() listener
share|improve this answer
Ok, I tried that and it works well enough. However, I notice that there are several different types of listeners that I could potentially use for this solution for EditText: setOnClickListener() setOnEditorActionListener() setOnFocusChangeListener() setOnKeyListener() setOnTouchListener() Which one would be the best for this situation? I know the EditText always comes into focus when the activity starts, which might interfere with the onFocusChangeListener – Scott Jun 30 '11 at 17:19
For example, if you have two edittext boxes, one for username, another for password, and you want to append some text for username field. Once the user types his username and focuses on password editext box, listen to it and append the text on username edittext. – dcanh121 Jun 30 '11 at 19:26

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.