Tagged Questions
EditText is a thin veneer over TextView that configures itself to be editable.
129
votes
14answers
28k views
Stop EditText from gaining focus at Activity startup?
I have an android activity, with two elements:
EditText
ListView
when my activity starts, the EditText immediately has input focus (flashing cursor). I don't want any control to have input focus ...
48
votes
2answers
28k views
Android multi line editText (Text area)
I want to have 5 line in height text area following code i am using.
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content" android:gravity="center"
...
35
votes
7answers
32k views
Android: show soft keyboard automatically when focus is on an EditText
I'm showing an input box using AlertDialog. The EditText inside the dialog itself is automatically focused when I call AlertDialog.show(), but the soft keyboard is not automatically shown.
How do I ...
24
votes
2answers
18k views
How do I show the number keyboard on an EditText in android
I just basically want to switch to the number pad mode as soon a certain EditText has the focus.
22
votes
6answers
22k views
Android: How can I validate EditText input?
I need to do form input validation on a series of EditTexts. I'm using OnFocusChangeListeners to trigger the validation after the user types into each one, but this doesn't behave as desired for the ...
21
votes
2answers
3k views
Display input validation errors in popup
I want to show all my validation error's of EdiText fields in a popup as shown in below image:
As far as I know Android has drawables:
1) popup_inline_error.9.png
2) ...
16
votes
6answers
14k views
(Android) How do I prevent an EditText from resizing itself when the user is typing?
I have an EditText and a button set next to each other on the same horizontal line. It looks great, except when the user enters a lot of text, the EditText is resized, and the button is squished.
I ...
13
votes
3answers
6k views
EditText, inputType values (xml)
Where can I find the values that inputType can have?
I'm aware of http://developer.android.com/reference/android/text/InputType.html, but how should the values look like in layout xml files?
13
votes
2answers
5k views
How to disable “Next” button on a EditText software keyboard (replace with “Done” button)
I have a bunch of EditTexts in my Android application, each with InputMethod set to numberSigned. My target device does not have a hardware keyboard and thusly uses the software keyboard for numeric ...
12
votes
5answers
312 views
Android Labels or Bubbles in EditText
Can someone please point me in the right direction how to do those bubbles or labels in the EditText something like those you see when you want to compose something in Stream for Google+ when you add ...
12
votes
5answers
13k views
Clear EditText on click
In Android how can I make an EditText clear when it's clicked?
ie if I have an EditText with some characters in, such as 'Enter Name', when the user clicks on it these characters disappear.
Cheers
12
votes
3answers
5k views
Vertical content align in Android EditText
I have a multi-line EditText:
<EditText android:layout_gravity="center" android:id="@+id/txtMessage"
android:layout_height="wrap_content" android:layout_below="@+id/lblMessage"
...
12
votes
2answers
34k views
Converting a string to an integer (Android)
I'm not 100% on how to do this so i'm asking...
May seem stupid but...
How do I convert a string into an integer?
Background info:
I have a textbox I have the user enter a number into...
it then:
...
11
votes
2answers
1k views
Exception when focusing a EditText in a PopupWindow running on Device
I'm developing a PopUp window for Android, and it's working, I added a EditText and a Button on that, when running on ADV this work properly, while running on device, when I focus on the EditText this ...
11
votes
4answers
2k views
Password hint font in Android
When an EditText is in password mode, it seems that the hint is shown in a different font (courrier?). How can I avoid this? I would like the hint to appear in the same font that when the EditText is ...
11
votes
4answers
6k views
Edittext set for password with phone number input? (android)
How do I get a Edittext with both a phone input and the ability to hide the string. I know that
android:inputType="textPassword"
hides the string, while
android:inputType="phone"
brings up a ...
10
votes
5answers
205 views
How to put Editable edittext within a listview?
I use section adapter for the whole listview.Now in this image,there is a edittext which is not editable.I want to make this edittext editable.
10
votes
2answers
381 views
Value in edittext don't show until it get focus. Android
I'm building an app that get its layout based on external data. The layout is split into different blocks depending on the indata. These blocks are displayed with the help of a viewflipper. In each ...
9
votes
2answers
14k views
Android: On EditText Changed Listener
In my project I have a EditText. I want to show how mant characters are there in the EditText and show it in the TextView. I have written following code and it works fine. However, my problem is when ...
9
votes
4answers
8k views
Limit text length of EditText in Android
What's the best way to limit the text length of an EditText in Android?
Is there a way to do this via xml?
9
votes
3answers
9k views
Android EditText ImeOptions “Done” track finish typing
I am having edittext field i am setting following property so that i display done button on the kayboard when user click on textfield.
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);
When user ...
8
votes
1answer
406 views
How to handle the “paste” event in Android 3.0(Honeycomb)?
I have a customized EditText, which need to do customized "paste".
I overrode onTextContextMenuItem(int id) to handle "paste" requested by selecting context menu.
@Override
public boolean ...
8
votes
3answers
382 views
EditText doubling out on rotate
I'm having an issue with an EditText control. This issue is only happening on this particular Activity and no other Activities with EditTexts. I have removed all setText calls for this EditText and ...
8
votes
2answers
2k views
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 comma ',' instead. Even though my locale is set as german the decimal separator is still ...
8
votes
4answers
7k views
How do I use InputFilter to limit characters in an EditText in Android?
I want to restrict the chars to 0-9, a-z, A-Z and spacebar only. Setting inputtype I can limit to digits but I cannot figure out the ways of Inputfilter looking through the docs.
8
votes
4answers
6k views
Android numeric password field
I have an EditText field which needs to be a numeric password field. Everything works OK in portrait mode; not in landscape. When the user selects the EditText field, the UI zooms into the field and ...
7
votes
3answers
704 views
Text align problem when using Arabic font
The screenshot below displays my problem.
The first EditText shows a hint in Arabic which is shifted upwards, now the second EditText is just for reference which shows the English version completely ...
7
votes
3answers
5k views
Android soft keyboard covers edittext field
Is there a way to make the screen scroll to allow the text field to be scene?
7
votes
1answer
858 views
EditText and TabHost do not like each other
I have a layout with EditText and TabHost containing 2 tabs. Android 1.6.
I use hardware keyboard in following case. Steps to reproduce:
When activity is displayed the EditText gains focus.
As ...
6
votes
5answers
317 views
virtual keyboard covering EditText in Galaxy Tab
I have a EditText in my app. my problem is that the the virtual keyboard masks my EditText while typing. I have tried using different stuffs..
<activity android:name="Myactivity" ...
6
votes
3answers
507 views
Soft Keyboard shows up on EditText focus ONLY once
Thanks for reading.
I am facing a strange problem: My app behavior is such that when the Activity starts, I requestFocus() on an EditText and show the soft keyboard.
However, when I press the back ...
6
votes
2answers
2k views
Multiline EditText with Done SoftInput Action Label on 2.3
Is there a way to have a Multi-Line EditText present and use the IME Action Label "Done" on Android 2.3?
In Android 2.2 this is not a problem, the enter button shows the IME Action Label "Done" ...
6
votes
5answers
594 views
Clearing a multiline EditText
I am trying to clear a multiline EditText field inside the OnEditorActionListener.onEditorAction method.
But using any of the obvious ways i.e.
((EditText) view).getEditableText().clear();
...
6
votes
2answers
578 views
Can I use the soft keyboard without an EditText?
I'm creating a simple typing game in Android. I have no problem getting input from the physical keyboard, but now I'm trying to get the soft keyboard to appear without the EditText. So far, I've tried ...
6
votes
1answer
4k views
Android: Is it possible to dynamically change the border color of a EditText?
I would like to change the Orange border around a EditText. Like when the input is valid, I want it to become green.
However I do not seem to find a method to do this. Is it possible?
6
votes
1answer
4k views
Android: Can't figure how to use setImeActionLabel
What I want to do is change the default "Done" label that appears in the virtual keyboard. Here's what I've tried without any luck:
mSearchInput.setImeOptions(EditorInfo.IME_ACTION_DONE);
...
6
votes
8answers
10k views
How to replicate android:editable=“false” in code?
In the layout you can set the EditText widget to be non-editable via the android:editable attribute.
How can I do this in code? I need to make the EditText widget to be editable depending on ...
5
votes
2answers
745 views
Android: Error popup on EditText doesn't move down when keyboard goes away
I have an activity that displays a few EditTexts on screen for user input. To be sure the soft keyboard doesn't cover my fields when it displays I have set the property
...
5
votes
5answers
2k views
Stop ScrollView from auto-scrolling to an EditText
Seems to be a common problem without a great solution that I have found. Goal is to stop a ScrollView from auto-scrolling to an EditText (or any view for that matter) that has focus.
You have a bunch ...
5
votes
2answers
228 views
Is there any way to put an EditText/input field into a homescreen widget?
I want my user to input something on the homescreen, but every time I add an Edittext to the widget it breaks. I did a little google searching to find that they apparently are not supported in ...
5
votes
1answer
1k views
EditText in ListView with windowSoftInputMode adjustPan
I have a ListView with an EditText in each row. I have set windowSoftInputMode to adjustPan in the manifest for this activity, so when I tap on an EditText the layout pans so that it is visible above ...
5
votes
3answers
200 views
How to retrieve EditText's xml id
I have a form with many EditTexts, and when I press a certain button, I need to retrieve all these controls and put them into a HashMap so the key is the name (key1 int the following code)
...
5
votes
3answers
3k views
Select all text inside EditText when it gets focus
I have an EditText with some dummy text in it. When the user clicks on it I want it to be selected so that when the user starts typing the dummy text gets deleted.
How can I achieve this?
5
votes
2answers
439 views
EditText and MultiAutoCompleteTextView suggestions
I'm using a MultiAutoCompleteTextView in my app to show various suggestions.
I noticed that MultiAutoCompleteTextView doesn't support the regular android suggerstion that come defaultly with an ...
5
votes
1answer
630 views
Android: EditText cannot gain focus after being re-enabled
I have a TabHost with three tabs. The first tab's content is the Intent of a custom activity who's contentview is a relative layout containing two EditTexts and two CheckBoxes (and a button).
Each ...
5
votes
2answers
1k views
Focus problem with multiple EditText's
I have an activity with two edittext controls. I am calling the requestFocus on the second edittext field since by default the focus goes to the first edittext control. The focus appears to be in the ...
5
votes
1answer
4k views
Catching key pressed with the virtual keyboard in Android?
With the physical keyboard you can catch key presses with a KeyListener, something like:
myEditText.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, ...
4
votes
1answer
119 views
Programming “enter” and “shift-enter” for EditText using a soft keyboard
I am developing an Android application that makes use of EditText (Multiline). The devices I am testing it on lack hard keyboards, so as a result I (obviously) use the soft keyboard. When I ...
4
votes
4answers
222 views
Validate an email inside an EditText
I want to validate an email introduced inside an EditText and this the code that I already have:
final EditText textMessage = (EditText)findViewById(R.id.textMessage);
final TextView text = ...
4
votes
2answers
160 views
Validation in EditText allow IP or web Url host
I am in need to give validation on my EditText such that it allows me to enter a valid
ip address format ( ?.?.?.? ) ie example 132.0.25.225
or
web url format ( www.?.? ) ie example ...