EditText is a thin veneer over TextView that configures itself to be editable.

learn more… | top users | synonyms

1
vote
2answers
20 views

how to show possible matching suggestions for text being typed in an edittext?

i'm creating an Application where there is a part where user needs to enter the state,city and district in an Edittext. while entering the state I need to show some possibly matching suggestions with ...
0
votes
1answer
32 views

android edittext minmum and maximum value

I am in development of an android app.. actually i need to set a minimum and maximum value for an editext entry my minimum value is 18 and maximum is 65.I did the exact code of this package ...
1
vote
1answer
33 views

How to return a String value to another class in regards to editText

I am trying to display a textValue inserted by the user from the main class to another class/window. On my main class I made this method public String retChoice() { choices[0] ="sasda"; ...
1
vote
2answers
74 views

EditText.getText().toString() crashes

In my android application , I have 3 dialogue boxes in which the user puts info into 3 editTexts and it will display the one of the data onto another class/page after it randomly picks which data to ...
0
votes
4answers
26 views

Edit text not scrollable inside scroll view

I have a Scroll view inside which is an EditText which is set to scroll vertically. But it does not scrolls. Instead the whole layout scrolls, Whenever i try to scroll the EditText. Below is the code ...
0
votes
0answers
20 views

How i get integers from an edittext and store to array and shareprefereces?

How i get integers from an edittext and store to array and shareprefereces? For example user insert 12 34 56 7 90 35 678 separate with space... public static ArrayList<Integer> pulseslist = new ...
1
vote
2answers
30 views

my EditText will accept numbers only in English, is there a way to change that and make it accept universal numbers?

I made a very simple app that involves only numbers and there is no need to make different locale folders or anything. When I test the app, the EditText will take numbers when the keyboard language is ...
0
votes
2answers
35 views
+100

Android - Keyboard not appearing in floating window

I'm writing an application that uses the following code to draw an edittext on the screen over running applications: WindowManager.LayoutParams params = new WindowManager.LayoutParams( ...
0
votes
1answer
23 views

Get Text from Multiple EditText with Button in Android

My problem is creating activity to enter an array manually in Android. So I tried to create multiple EditText by these code lines: public void EnterArray(int n) { for(int i=0; i<n; i++){ ...
0
votes
3answers
27 views

How to get text from user on Android?

How to make a window dialog that contain only an EditText and that popup like an alert to get Text from user under Android please.? I've already checked this Get text from an EditText
1
vote
1answer
40 views

Android-limitation to edittext

I need to set some limitations to the input of EditText.Only allow users to input a-z,A-Z,0-9 ,semicolon ; and chinese letters. my layout is very simple,one edittext and one Button,if the edittext ...
0
votes
1answer
17 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
2answers
41 views

EditText, How can control the cursor in TextWatcher?

I have a TextWatcher on an EditText, in the method afterTextChanged, I add characters to the EditText then I move the cursor to the end of EditText for continue adding text, but I have problems with ...
0
votes
0answers
19 views

Android EditText Letter-Wrap, instead of Word-Wrap

I am trying to write some gui code (always hated it on android) and can't seem to get my EditText to behave as I want it to. The EditText has a predetermined size, is set to singleline, has disabled ...
-4
votes
1answer
39 views

How to hide keyboard by default and show only when click on EditText [duplicate]

I have multiple Edittext in my activity i want to hide by defult keyboard when view shows and show keyboard only when edittext is clicked i am not getting how to do this thanks Advance:)
1
vote
3answers
24 views

How to end input when I just end inputting in on of 10 EditTexts i in Android?

There are 10 EditTexts.When I input these EditTexts, the softInputKeyboard shows "NEXT" and at the last EditText it shows "DONE".I can not hide softInputKeyboard until I finish inputting all of them. ...
2
votes
1answer
43 views

Overlapping Keyboard with Edit Text in Android - Want the Real Cause and Solution

I always face a problem in android layouts where my keyboard overlaps with the edittext. Many people have suggested different different solutions doing like this : ...
0
votes
0answers
18 views

EditField in RelativeLayout has input lag

So I have a layout that is fairly simple and I have some weird interactions going on. when i type on the "search_field" EditText the input works as expected. When I type in search_field2 field the ...
3
votes
1answer
39 views

Android EditText on longPress: ArrayIndexOutOfBoundsException: length=15; index=491

I have this strange behavior I cannot explain. My layout is quite simple: An EditText: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
-8
votes
0answers
52 views

Android: make edittext border bottom like google maps [closed]

I want to create a edittext like google maps search edittext, but i don't know how. Somebody help me please! This this edittext that i want to create http://i.stack.imgur.com/esaKm.png
-4
votes
2answers
59 views

integer.valueof with getText [closed]

I want the user to enter a number in an EditText. I don't know how to get the data that user enters to use it later in application for some calculations. I need an integer type to use in calculation. ...
1
vote
2answers
35 views

Passing string from edittext to new intent gives error

I'm trying to pass the value of string to the next intent that I got from an EditText box. final EditText et1 = (EditText) findViewById(R.id.editText1); final String userid = ...
0
votes
1answer
40 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): ...
1
vote
3answers
77 views

String does not take value from EditText

I´ve got a database android app and I was wondering why there is nothing in my database after an insert. Now, I found my problem but I can´t track it. EditText ename = (EditText) ...
0
votes
0answers
28 views

Changing text in Android with setText shadowed

I have two EditText in a fragment in my program and I want to update their value with the current position of the user. When I use setText("Text") to change it, it Works fine, but the control is ...
0
votes
1answer
27 views

Modifying EditText Color in AlertDialog won't work

I'm a newbee in programming application for android. For my app I'm in need for password request after the application starts..... so far so good. But in terms of calling my alertdialog the entered ...
0
votes
1answer
66 views

Check if EditText input matches SimpleDateFormat Android

I've searched a lot about this but I didn't find a way to check if a text written by the user in an EditText matches a SimpleDateFormat, is there a simple way to do that without using regex ? Here is ...
0
votes
2answers
30 views

show compound drawable to EditText on event

In my application in Activity I want to set EditText as I click inside(focus) EditText and type a key clear button should appear on right side of EditText and when EditText is empty that clear button ...
3
votes
2answers
42 views

set EditText width in LinearLayout depend on TextView width

I have following snippet of code. only one EditText and TextView in horizontal LinearLayout. I want to set EditText width depend on the TextView width. If the width of TextView means Text increase ...
0
votes
1answer
35 views

How to fire a event when the user enters the character in Android Edit Text?

In my android project. I want to fire a event(Display a dialog) when user enters particular character (ex: when user enters "s") .I tried on text watcher but the dialog is showing two times Please ...
0
votes
2answers
54 views

EditText getText returns empty

hopefully I am just passing something silly. PROBLEM: my EditText (2) getText() return empty String "" @ runtime IN THE LISTENER. Please see the lines inside the onClick(...) I suspect it has to be ...
0
votes
1answer
35 views

Contact name and phone number in an EditText - filtered typing

What I want to do is to have an EditText, there I can type some name (so that appears a filtered list with the names that correspond to what I have typed so far). Finally I choose a contact. The ...
-1
votes
0answers
68 views

How to make a custom menu in edittext like copy and paste context menu? [closed]

Just like this menu, but custom menu item and onclick event.
0
votes
1answer
38 views

Verify if EditText is at visible positon in screen

This problem I am going to introduce, only happen in Android 4.0 + I have a LinearLayout with 4 TableLayout, it's parent is a ScrollView. I add TableRows dynamically into each TableLayout. My ...
-5
votes
3answers
56 views

Android : How to differentaite setText and manually entered text [closed]

I have an EditText. setText() method of EditText is called on button click . I want to identity if button click is used or user manually enters the location. I have used TextWatcher , the ...
0
votes
0answers
23 views

How does one set fix an Android TableView size, while maximizing some columns, eg. EditText

Here's my problem... I've created an activity with two layouts (horizontal), one weighted "1", the other weighted "2". The first layout hosts a fragment. The second layout (horizontal) contains two ...
1
vote
1answer
30 views

Hint and InputType on Included EditText

I have a custom EditText declared in an XML file and I'm including it like so: <include layout="@layout/my_edit_text" android:id="@+id/passwordField" ...
0
votes
2answers
62 views

How to invoke onClick and onLongClick of EditText from RelativeLayout

I'm creating a compose screen for my app. I have a ScrollView which contains a RelativeView which in turn contains two things: the EditText where the user types a message, and an ImageView whose ...
-1
votes
1answer
68 views

How to change the default disabled EditText's style?

It isn't looking nice when using EditText enabled="false". How can I change it automatically for all of the controls? I've added this image for reference. Can someone help me? Thanks.
0
votes
1answer
32 views

How to hide the footer view in android?

I have a xml layout with 7 edittext fields also I have added one footer view below the Edittext's. When I touch the edit text I want to hide the footer and once completed the text typing. I want to ...
1
vote
1answer
38 views

EditText not showing when keyboard comes up

I have an issue with editext in my expandablelist view child.List moves up when the keyboard shown intially , but when i start typing list moves down and edittext not shown.. I have added ...
0
votes
0answers
42 views

application crashed on orientation change

UPDATE: I had my problem solved by using android:configChanges="orientation|screenSize" My application crashed when I tried to change orientation, and I have looked through several other threads ...
0
votes
1answer
48 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
4answers
81 views

EditText setOnFocusChangeListener on all EditTexts

I have several EditText fields which I want to save to the SQLiteDatabase with setOnFocusChangeListener. Do I have to set an onFocusChangeListener on each one individually, or is there a catch-all of ...
0
votes
2answers
19 views

Intercept D-Pad presses in EditText on Android

I am trying to listen for arrow key (dpad) presses in an EditText, on a softkey keyboard. I've tried multiple approaches, but nothing has triggered the key event to be sent to any listener or ...
0
votes
2answers
69 views

Android Remove selection EditText after long click

I've got a EditText which I want to use in two ways When clicked everything is selected and the user can change the input. When long clicked the text color changes and for the rest nothing happens ...
0
votes
0answers
51 views

Monodroid - EditText input method won't accept numbers

I am having some very strange problems with the EditText control in Mono for Android. My solution is targeting 2.3 and I am debugging on a T Mobile VivaCity. Here is my AXML for the EditText ...
0
votes
0answers
46 views

How to disable Search bar type hint

I have some code for an editText search filter EditText searchView = (EditText) findViewById(R.id.search_view_edit); searchView.setVisibility(View.VISIBLE); `list.setTextFilterEnabled(true);` ...
-1
votes
1answer
22 views

Dialog not send content to the EditText ListView

I have a problem. I have a dialog that has an EditText. The contents of this EditText I caught and put in a ListView, the error is that my variable that receives the contents of the EditText only ...
-1
votes
0answers
16 views

edit text to accept URL

i have edit text and it has to accept URL only. changing input type to textUri not worked <EditText android:id="@+id/editText2" android:layout_width="match_parent" ...

1 2 3 4 5 46