Top "Android-edittext" questions

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

Decimal separator comma (',') with numberDecimal inputType in EditText

The inputType numberDecimal in EditText uses the dot '.' as decimal separator. In Europe it's common to use a …

android android-edittext
Android EditText Max Length

I set up a max length of text in an EditText field. <EditText android:id="@+id/courseDescriptionField" android:layout_…

android android-edittext
Limit Decimal Places in Android EditText

I'm trying to write an app that helps you manage your finances. I'm using an EditText Field where the user …

java android android-edittext
Focusable EditText inside ListView

I've spent about 6 hours on this so far, and been hitting nothing but roadblocks. The general premise is that there …

android android-layout android-listview android-edittext
setHintTextColor() in EditText

I have View in which there are two text boxes, and the user can select text color from another view …

android android-edittext android-text-color
How do you set the max number of characters for an EditText in Android?

How do you set the max number of characters for an Android EditText input? I see setMaxLines, setMaxEMS, but nothing …

android android-edittext
How to disable copy/paste from/to EditText

In my application, there is a registration screen, where i do not want the user to be able to copy/…

android-widget android-edittext android android-keypad
Automatic popping up keyboard on start Activity

I got a relative simple question. I have an activity with a lot of EditText's in them. When I open …

android keyboard focus android-edittext
Disable auto focus on edit text

I have an edit text: <LinearLayout android:id="@+id/linearLayout7" android:layout_width="match_parent" android:layout_height="wrap_…

android android-layout android-edittext autofocus
Knowing when Edit text is done being edited

How do I know when my edit text is done being edited? Like when the user selects the next box, …

android android-edittext