Top "Android-edittext" questions

The EditText is the standard text entry widget in Android apps.

Change thickness of the bottom line of EditText when wrapped into TextInputLayout

here is my code XML Markup <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="…

android android-edittext styles material-design android-textinputlayout
EditText showing numbers with 2 decimals at all times

I would like to display the input of the EditText fields with two decimals at all times. So when the …

android decimal android-edittext input-filtering
EditText ellipsize (three dots...)

Unfortunatelly I am not able to make ellipsize for EditText works. Is even possible to put three dots at the …

android forms android-edittext longtext
Display Keyboard for EditText in Emulator (GenyMotion) Android 4.3

Does anybody know how to display the keyboard in the emulator when the EditText field has focus. I have tried …

android android-edittext emulation android-softkeyboard genymotion
How to filter the input of EditText?

I want to filter the input of an EditText, only digits and letters are allowed, first I use TextWatcher to …

android android-edittext textwatcher android-input-filter
How to programmatically hide/disable emoticons on Android soft keyboard

Is it possible to hide a specific keyboard button? I have an EditText and on some devices its keyboard has …

android android-edittext android-softkeyboard
TextInputLayout and EditText double hint issue

I want to set the hint with java in EditText(which is in TextInputLayout). Code used for setting hint: aET = (…

android android-edittext android-appcompat android-textinputlayout
Android - Do something *after* text is changed in EditText

I build an android application. I have an EditText. I want to save changes (or anything else) automatically after the …

android android-edittext textwatcher
How to exclude special characters from android keypad for EditText

Hi I want to show only numbers and characters on the keypad for EditText in android, I did try to …

android android-edittext keypad
How do I set multiple input types in an EditText on Android?

I am trying to create an EditText with auto-capitalization and auto-correction implemented. I have manually figured out how to add …

android android-edittext bitwise-operators input-filtering