EditText is a thin veneer over TextView that configures itself to be editable.
-1
votes
2answers
51 views
Passing from Textview to EditText with Bundle
Situation:
Users can save an item containing name, description and photo.
After that it's showed by listview.
When users click one of items they saved, shows the information of the item they saved on ...
0
votes
0answers
13 views
How to add editext acting as search engine for phone contacts?
EdiText should display names from listview where listview contains names inserted into phones contact search engine should be able to search inbuilt contacts names alphabetically
0
votes
3answers
26 views
OnTextChang for edittext in android?
I have 8 edit texts each allow only one character.when user enter something it automatically moves to next edit text. It's work fine by using onTextchanged.But i need to move backward also like when ...
0
votes
1answer
20 views
Spamming EditText cause freezes
I have a kind of quantity field with + and - buttons.
When the user clicks on those buttons it increments or decrements an integer inside an EditText. I use an EditText and not a TextView because ...
0
votes
0answers
12 views
Shift+Enter Key Event behavior on Android Password field
In Android password field if execute Shift+Enter key event, text disappear for few moment and again come. I tried to restrict it suggested here here
it restrict Eneter Key event but allow to execute ...
0
votes
0answers
2 views
How to handle the tab key in the EditText in Android
I'm getting a hard time in figure it out when I hit the tab key in my EditText. Instead of going to the right editText, it should be going to the editText below the first editText.
Can someone help ...
1
vote
2answers
40 views
Android: Trying to add setText to an EditText
I'm just now dipping my toes into reverse engineering Android apps and I'm sure this is a very newbie question. I'm simply trying to automatically insert some text into an edittext field but I get an ...
2
votes
4answers
86 views
How to show drop down list below EditText?
I have a EditText and one Button for Search, now i want to show list of search result below EditText when click on button,
when i enter text "abc" and click on search button then drop down should ...
0
votes
0answers
11 views
Tab Order in EditText in Android
I am using a table layout and have two EditText fields in one row with EditText fields on the next rows below.
In the emulator, when I hit the tab, txtUser(EditText) should go to the ...
0
votes
0answers
36 views
EditTexts inside a ListView: double tap to focus
I have a ListView of EditText. I would like to take focus of items in a two step fashion:
first click highlights the EditText
second click focuses the EditText
The only thing I've been able to ...
0
votes
1answer
33 views
How can I change the (.) of password to some other image dot?
I have a EditText which is a password field. By default android has its (.) dot which i want to replace with some image dot. How can I do that any suggestions.
2
votes
1answer
53 views
Not removing particular item in Arraylist
I have a EditText with ImageView Plus .
On click of ImageView Plus I'm inflating new layout with EditText and ImageView Minus.
Now, On Click of ImageView Minus. I want to remove the inflated ...
0
votes
4answers
56 views
EditText getText crashes
Seemingly very simple exercise, yet this somehow crashes my program. Trying to retrieve the string that the user enters into an EditText field. When I hit the submit button, I crash. Thanks again!
...
0
votes
1answer
22 views
EditText.getText in popup window dialog
i dont know why youtue_title and youtube_description is null ??? after i add text to this editText ??? i do this all the time why now it not work ? ??
Is there a problem because it is in a popup ...
0
votes
0answers
10 views
Layout displaces (which has CustomView) when keyboard goes away
Hope your doing well :)
I am trying to develop my android multiplayer application which uses surfaceView (in CustomView) to draw some picture and other uses guesses it. Now this part of code is one ...
0
votes
0answers
43 views
Adding Number's in a TableRow/TableLayout in Android
I have a Score Card for a game that my family play and I am trying to get it so that Round 1 and 2 add together and Total of that adds to Round 3, all the way to the end of Round 7.
My score card ...
0
votes
2answers
29 views
NullPointerException : android editText
I've been following this this tutorial to create a date picker , but I keep having a nullpointerexception when setting the value of edit_text , here some parts of my code :
// Update demo edittext ...
-2
votes
0answers
29 views
EditText event hadling
I have only one text view and one edit text in my activity. Once user enter some value in edit text and click outside of edit text some logic should perform (want to start ...
0
votes
3answers
37 views
How to get a value from edittext dynamically?
I have tried searching unsucessfully. I need to have an edittext always checking if its value is changing and if it contains something do something. I have looked at a OnTouch listener but it is just ...
0
votes
0answers
5 views
Is it possible to Implement Search on a Custom ListView using Search Dialog?
I've used Search Dialog in my application. My application has a Custom ListView populated by parsing an XML file.
Now, I want to add Search functionality to it. I know there's a filter method in ...
0
votes
1answer
55 views
EditText “ime” option is not working
Iam newbie to android. I started working with EditText. I had tried Imeoption(imeoption ="actionsend") for the editText but cant find any button showing send. I had even given "singleline=true" but ...
0
votes
1answer
18 views
Keep a part of edittext uneditable
In my app I have a couple of checkboxes, that when checked combine the first part of an edittext. In the same edittext I would like to allow the user to append some text, while disallowing to delete ...
0
votes
3answers
61 views
check empty edit text in an alert dialog android
I have the following code for checking empty edit text in an alert dialog, but it is not working
if (mPhoneNumber == null) {
mPhoneNumber = GetNumber();
if (mPhoneNumber == ...
-1
votes
2answers
55 views
on listview filtration is not working properly
I am facing problem while filtration of list .I am using onTextChange() method for it .It is working properly but problem is that as i type single character in edit Text the soft keyboard gets ...
0
votes
4answers
69 views
Android: If Else Android ,Else always activating
Hi Im new to android development and this is my first post on stackoverFlow. I am trying to make an in which there is a picture of say brad pitt a edit text and a button. the object is to guess who is ...
0
votes
1answer
33 views
Disabling edit text OnLongClick options popup
How do you disable the OnLongClick event on an edit text?
I did try the following things:
editText.cancelLongPress();
also
editText.setOnLongClickListener(null);
and also the
...
-2
votes
2answers
41 views
Getting decimal number from edittext
I know something similar has already been asked, but I'm having some trouble to get a decimal number that come from keyboard.
My Java code in the onCreate method should be:
textS0 = ...
1
vote
3answers
58 views
Add multiples images to Edit Text View Android
I have 2 images one is "(" and another ")" how I can add these to EditTextView backgroud and stretch them the size of the EditTextView changes .
I tried to use layer_list without any luck .
0
votes
1answer
24 views
Having problems with retrieving, saving, and sending text from multiple edittext boxes
I have been trying many different ways from different tutorials, question responses, etc. and still cannot get my app to not only retrieve the text from multiple edittext, but then save into an ...
0
votes
1answer
33 views
Android: strange behavior of Soft Keyboard with EditText and ListView
I'm going crazy!!! Please help me. Ths is the problem:
If i have an Activity with an EditText and a ListView the Soft Keyboard is shown when the Activity comes visible.
If i have remove the ListView ...
1
vote
0answers
48 views
How to set text from an edittext from another class
In my application the user presses the TextView and it brings up an intent over the screen where the user enters the text they want.
Here is the case statement
case R.id.Weapon:
W = new ...
0
votes
1answer
55 views
EditText validation in android?
I have a scenario like the image below:
If a user don't write anything in Username or Email field, it will show question mark. On the other hand it will show cross mark. How to achieve it???
0
votes
0answers
8 views
android-can listview in 2 line and checked
Anybody, I want to ask my listview design need 2 line to display and it is also can have the checked place. Can it be?
Other than that, how can I getText from EditText to the listview of above ...
-3
votes
0answers
30 views
Android :: EditText float point [closed]
I have a funny problem.
I have two Edit Texts that have "number Decimal" for input type.
But, in the first one i have the floating point, and I don't have in the second one.
And I'm out of ideas, ...
0
votes
3answers
107 views
How to design custom EditText in android?
I am developing apps in android. I did design custom edittext for my apps see image.1 for image.1 i used edittext style but I want edittext style like following image.2. does anybody have solution.
...
0
votes
3answers
58 views
Getting string from EditText NullPointerException error
I made an app that make EditText fields dynamically by the user choise, and get the text from it.
This is how i setup my EditText fields:
The user select option from a spinner and EditText field ...
2
votes
3answers
78 views
Add a Space after 3 characters
I have a seekbar which set values from 1500 to 48500 when on progress to an editText. I want to add a space after ever 3 characters on progress changed. for example 1500 becomes 1 500, 1 600, 30 000, ...
0
votes
1answer
43 views
Android- do not split the context menu when splitted action bar used
I have an edit text and below that one button and action bar at the top and bottom in one of the screen in my application. after entering the the text in edit text when i long press on text in edit ...
-1
votes
0answers
47 views
How to add Miters (m) to edit text in android in TextWatcher
I need to add the Meters "m" symbol when users enters into the text in edit text box.I have searched for this and found some solution .but it wont works for me.
My edit text in xml file is ...
...
0
votes
1answer
45 views
Android Error: android.widget.TextView.<init>
i want to run the application in ma Galaxy S2 but i found this error. i post the logcat. please tell me what s the problem? and how to resolve it ? thanks
05-07 11:23:38.820: D/AndroidRuntime(8900): ...
0
votes
0answers
48 views
android can't retrieve view by id after setting it dynamically
i am using ListFragment , and inside this fragment and in onCreate function i am using custom cursor adapter , that repeats my layout for a certain number of times ,
The layout contains some elements ...
0
votes
2answers
21 views
Retrieving values from input texts android
I am trying to retrieve the values from the edit text input boxes and store them in a database. I am getting a null pointer exception and I am not sure why. Thanks in advance for the help :)
This is ...
0
votes
0answers
31 views
Big Bottom Padding of Text in EditText
I have a problem with big bottom padding of text in EditText.This only Happens in Gingerbread and lower ROMs. In ICS and up it is all okay.
Here´s what i mean:
http://i.stack.imgur.com/BisvZ.jpg
...
0
votes
1answer
29 views
How to add addTextChangedListener to listview values from sqlite database as source in editText for Android?
I would like to have editText addTextChangedListener to listview values for sqlite database values.Kindly provide me a snippet or example to do this or is it not possible to do it.Kindly provide a ...
0
votes
1answer
96 views
store an EditText value into SQLite database line by line
i made an EditText that displayed value with multiple line like this...
i want to keep that value in a SQLite database. this is the code i use:
export.setOnClickListener(new OnClickListener() {
...
0
votes
1answer
21 views
EditText listeners not fired when it is in dialog
I created a custom-dialog in android that contains an EditText and a ListView. The list view onItemClickListener is fired correctly when I select any Item, but it is not the case with the listener of ...
0
votes
1answer
60 views
EditText.SetOnEditorActionListener
I'm completely at a loss for implementing an action listener for the imeOption setting "actionSearch" on an EditText control.
I have looked at the Android Documentation for doing this, but I can't ...
0
votes
5answers
86 views
Android: EditText.getText().toString() not working
I use this code to build an AlertDialog with an EditText:
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Title");
...
1
vote
0answers
46 views
Android Form with EditText makes the screen flash
I don't know why my "Forms" activity are flashing when an EditText are focused and then a layout is scrolled.
It just happen in devices with Android 4.0 +
I am using a Table Layout and adding TableRow ...
-2
votes
0answers
21 views
How to valid the string in the EditText using regular expression?
Im developing a android application .Im using the version 2.2 (API 8)
In that i want to get the input from the user via EditText
I want to get numeric values from the edit text
for example the ...







