Top "Android-edittext" questions

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

EditText maxLines not working - user can still input more lines than set

<EditText android:id="@+id/editText2" android:layout_height="wrap_content" android:layout_width="fill_parent" android:maxLines="5" android:lines="5"&…

android android-layout android-edittext
Android TextField : set focus + soft input programmatically

In my view, I have a search EditText and I would like to trigger programmatically the behaviour of a click …

android android-edittext
Android: Resize only parts of view with soft keyboard on screen

I have a view with a Edittext field on top of an ImageView. When the keyboard comes up I want …

android android-edittext window-soft-input-mode
Android Word-Wrap EditText text

I have been trying to get my EditText box to word wrap, but can't seem to do it. I have …

android xml android-edittext word word-wrap
Android: Check if EditText is Empty when inputType is set on Number/Phone

I have an EditText in android for users to input their AGE. It is set an inputType=phone. I would …

android android-edittext gettext
How to make edit text not editable but clickable in JAVA

Is it possible to make EditText clickable but not editable. I don't want it to be editable (Neither should the …

android android-layout android-edittext
How to restrict the EditText to accept only alphanumeric characters

How can I restrict an EditText to accept only alphanumeric characters, with both lowercase and uppercase characters showing as uppercase …

android validation android-edittext
How to mask an EditText to show the dd/mm/yyyy date format

How can I format an EditText to follow the "dd/mm/yyyy" format the same way that we can format …

android android-edittext mask textwatcher
TextWatcher for more than one EditText

I want to implement the TextWatcher interface for more than one EditText fields. Currently I am using : text1.addTextChangedListener(this); …

android interface android-activity android-edittext textwatcher
How to change focus color of EditText in Android

How can I change the focus color (orange) on an EditText box? The focus color is a small rim around …

android android-edittext android-styles