EditText is a thin veneer over TextView that configures itself to be editable.
9
votes
3answers
856 views
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/paste text into the EditText field. I have set an onLongClickListener on each EditText so that the ...
7
votes
1answer
341 views
Which theme attribute changes the text color of an EditText's error message
In my form I use setError("") on an EditText field. My Application-Theme extends android:Theme.Holo.
I have manually set an image with a dark background for android:errorMessageBackground and ...
6
votes
1answer
150 views
EditText loses its borders after failure in submission
I built a screen that looks like this:
but if login fails the screen turns out to look like this:
I used EditText and the code looks like this:
<TextView android:layout_height="wrap_content" ...
5
votes
2answers
1k views
How to create EditText with cross(x) button at end of it?
I want to know,Is it any widget like EditText which contains an cross button or is there any property for EditText by which it is created automatically.So by using that cross button I can delete ...
4
votes
0answers
150 views
Android EditText Multiline with SoftInputMode adjustPan
I have an activity to edit some text with a top bar a EditText view in multiline mode inside a scrollview. At the bottom another view with 2 buttons. What I wanted to achieve is when editing the text ...
4
votes
3answers
81 views
@ at the beginning of EditText value
When I tried to hard code a string starts with @ as the value for android:text attribute, eclipse says
error: Error: No resource type specified (at 'text' with value '@dmin123').
how can I avoid ...
4
votes
0answers
289 views
Change the color of the cursor of an EditText in Android 3.0
I have to have an EditText in my application with a white background. I did this in my theme.xml file
<style name="myEditText" parent="@android:style/Widget.EditText">
<item ...
4
votes
3answers
475 views
How to Get Text and Smiley from Edittext into String?
How to Get text and smiley from edittext into String?
Using Following Code I was Add Smiley/Emojis in Edittext but how to get text/smiley from edittext into String Format.
ImageGetter ...
4
votes
2answers
101 views
How do I make android keyboard display a '.com' button
I have an EditText. My imeOptions attribute for the EditText is actionGo. What do I have to do to make it display a '.com' key?
4
votes
1answer
96 views
How do I make 2 characters overlap each other in an Android EditText
I am making a music notation app for Android for one of my school projects.
In this app, I don't have a music notation rendering mechanism. Instead, I use a font, which has all different notes in ...
4
votes
1answer
2k views
Android Problem: EditText, KeyListener and the physical Back Button
My activity implements KeyListener and my edittext has a key listener set.
editor = new EditText(this);
editor.setMinLines(4);
editor.setMinimumWidth(400);
...
3
votes
2answers
60 views
Create background image with margin on EditBox
I'm trying to create a EditText box, like below which has a image on the left hand side and editable text region on the right hand side, but I don't seem to have the slightest clue how to do this in ...
3
votes
0answers
130 views
EditText with single text line, line wrapping and Done action?
I am trying to have an EditText with the following characteristics when editing with a soft key. I ready the documentation, searched here, play with the parameters but could not find a working ...
3
votes
2answers
96 views
more than one edittext in android
I want to make a input pin code input box as per below image .i have used four edittext for it but my problem is that i m unable to move the cursor from one edittext to other and vice-versa.Please ...
3
votes
1answer
126 views
Merge two layout into one
Is it possible to merge two layout into one. Suppose i have two TextView of username and password in first layout vertically and two EditText in the second layout vertically. After merging this two ...
3
votes
2answers
853 views
Handle enter key in EditText across different devices
Right now I'm handling the enter key in my EditText fields using a an onEditorActionListener and looking at the Action ID for IME_NULL. It works fine for all my users except one. She has an Xperia ...
3
votes
1answer
208 views
EditText stops displaying characters as I type?
Basically what happens is I will start typing on the keyboard (stock and third party), and all of a sudden it stops showing characters I type in the EditText, (sometimes) resets the caret to the ...
3
votes
1answer
131 views
Set temporary text in a EditText/TextView in Android?
I'm looking to build a simple input form for username/password, and I was wondering if it was possible to mimic the functionality that many websites offer, namely a temporary string within a text ...
3
votes
1answer
397 views
EditText not restoring state in DialogFragment
I currently have a DialogFragment that has a couple of EditText widgets as part of it's view. When there is an orientation change happens the EditText widgets are not repopulated by the text that ...
3
votes
3answers
896 views
When the soft keyboard appears, it makes my EditText field lose focus
I've got a few EditText fields in a ListView. When I tap on one of the EditText fields, the keyboard slides into view (as it should), but the EditText field I tapped loses focus. I've tried using ...
3
votes
5answers
5k views
Limit Decimal Places in Android EditText
I'm new to android and trying to write an app that helps you manage your finances.
I'm thus using an EditText Field where the user can specify an amount of money.
I set the inputType to numberDecimal ...
3
votes
1answer
2k views
How to stop Soft keyboard showing automatically when focus is changed (OnStart event)
I am developing for a tablet using Android 2.2.
I have a form which I am using for new and editable instances. When editable, I want to stop the user from editing certain fields. I manage this in my ...
3
votes
3answers
390 views
Display Validation Message
I have an XML layout file that contains an EditText and a Button. I would like to display the following validation message to provide feedback to the user:
You must enter 4 numbers
What's the ...
3
votes
1answer
210 views
android:minEms is ignored in dialog-themed activities
I have a relatively simple layout that contains an EditText. The activity itself uses the dialog theme. The dialog ends up being tiny, the edit text isn't even big enough to show the initial string.
...
3
votes
2answers
3k views
get String from EditText
login.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
if( username_text.getText().toString() == "admin" ...
2
votes
0answers
46 views
Android Edit text alignment
I am making a small app for a tablet, something like a display sign.
I have a few text elements that are center aligned in the display sign. When I tap on it, it gets converted to editText. I want ...
2
votes
0answers
27 views
display smiley in textview and edittext in android
hello i am developing chat application in which i want to insert smiley
i have not much idea about it how to integrate and display in it
can u give me suggestion for doing the same ?
ImageGetter ...
2
votes
3answers
46 views
Multiple EditText - specify the cursor's location
In my class I create two EditTexts.
editText1 = (EditText)findViewById(R.id.EditText1);
editText2 = (EditText)findViewById(R.id.EditText2);
When I start the app, the cursor is automatically put in ...
2
votes
2answers
41 views
how to make the edit text value remain on the same page after comming from one activity
with the topic name everyone should be confused let me explain my question.i have two activity in first activity there is two edit text and two button one button is next and other is set. if i enter ...
2
votes
5answers
104 views
How to control the size of an Android EditText object
I have the following code based on the example shown at
Android devloper website
final EditText idInput = new EditText(this);
idInput.setHeight(50);
idInput.setWidth(winSize.x / 4);
...
2
votes
0answers
62 views
Is there a way to detect the word tapped in an EditText
Is there any way to map characters to a pixel location in an EditText?
I assume there is some knowledge within the component of the word at any pixel location, because you can select a word for copy ...
2
votes
3answers
124 views
Prevent expansion of EditText
I have the following the layout file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
2
votes
2answers
189 views
select a word on a tap in TextView/EditText
How to select a word on a tap in TextView/EditText in android. I have some text in a TextView/EditText and when user taps on a word, I want that word to be selected and after that when I call ...
2
votes
4answers
64 views
How to prevent the soft keyboard from displaying, or at least evict it once it does?
My app has an EditText that, when I click in it to enter text in the Emulator, brings up a soft keyboard. I don't want this confounded thing to begin with, but then, like the visiting loud-mouthed ...
2
votes
1answer
99 views
Rewrite Code to be Efficient (Button Increment Text view)
I have 5 editTexts and 2 buttons for each editText so 10 of them. Each one is supposed to increment/decrement a specific editText. Now my code works entirely but as you'll soon see, it is not ...
2
votes
1answer
202 views
EditText stucks after animation and alive back on scrolling…?
I am facing a quite interesting but annoying error, in my linear layout i have hided another linear layout using margin in negative and when user selects a type from a list i bring layout to front ...
2
votes
1answer
113 views
Better way to get all the text in an EditText from an InputConnection?
I've written an IME (InputMethodService) and I need to get all the text from the EditText it is editing. I know one way:
InputConnection inputConnection = getCurrentInputConnection();
...
2
votes
1answer
140 views
Not getting “Go” button on android keyboard
Im using android:imeOptions="actionGo" for a edit text box. Its working properly on Android default keyboard. I'm getting "GO" button . But if i try to change the input method to either swype or LG ...
2
votes
1answer
160 views
Custom validation in Android [closed]
Possible Duplicate:
Display input validation errors in popup
Please look the given above image i want to put Validation like this in edittext.
I have use setError but it not look like ...
2
votes
3answers
631 views
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">
</EditText>
...
2
votes
2answers
612 views
How to disable auto-capitalization of an EditText
This will have a really simple answer, but I can't seem to find what it is. I want to disable the auto-capitalization of an EditText so that, by default, the first letter entered with not be ...
2
votes
0answers
74 views
Android EditText can't handle large file
I notice that if most of the text inside EditText View is colorize with different colour (E.g. ForegroundColorSpan ), the EditText becomes very slow when the number of line is large. (>500 lines)
I ...
2
votes
1answer
207 views
Search from String?
I have an application that I am trying to get to got to a specific part of a website. When the user enter the text inside of the EditText and hits the Button I want the application to take that string ...
2
votes
2answers
1k views
Cut, copy, paste in android
I want to implement the cut,copy, paste functionality in my EditText,i tried with the following code :
ClipMan = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
...
2
votes
1answer
436 views
Android Honeycomb and imeOptions
I have an application with a EditText with the following properties:
<EditText
android:id="@+id/sendText"
android:layout_width="300dip"
android:layout_height="30dip"
...
2
votes
2answers
3k views
Remove focus border of EditText
How can I remove the border with appears when focusing an EditText View?
I need it cause this view has little space in the screen, but without the border it's enough. When running on Emulator an ...
2
votes
1answer
864 views
Get text string from EditText?
It seems I can't figure out how to get the text string out of EditText.
I want to use the text from the EditText at pressing the button:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
2
votes
1answer
392 views
How to add Text on Android Live Wallpapers
Im doing Android Live Wallpaper.It provides the user to give text input dynamically.That text should be displayed on wallpaper or scrolling like that.And this wallpapers have to be set as ...
2
votes
0answers
183 views
How to use “disableAlpha” with EditText / How to change attribute in AttributeSet
I want my Edittext to grey-out less or more than standard when disabled with editTxtV.setEnabled(false).
Oviously the disableAlpha-Property does exactly this.
But using android:disabledAlpha="2.0" ...
2
votes
2answers
953 views
Automatically format phone number in EditText
In my app, the user has to enter a phone number in an EditText field using the following format:
1(515)555-5555
I don't want the user to type "(", ")", or "-" while entering the number; I want ...