Tagged Questions
12
votes
2answers
35k 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 ...
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 ...
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);
...
4
votes
1answer
201 views
How to check the password from an EditView?
I use an EditText with android:password="true" to let the user type the password. Then I want to compare the password with a hard coded password when the user presses a button.
But I can't compare ...
3
votes
2answers
254 views
How to align EditText cursor properly?
I have an edit text with a 200sp size. The cursor appears in the middle. How can I make sure the cursor appears in the left corner? It looks odd being in the center.
<?xml version="1.0" ...
3
votes
1answer
44 views
Make entire EditText viewable?
Here is my problem:
The keyboard covers up the EditText. How can I prevent this from happening? Here is my original view (without the keyboard):
2
votes
4answers
65 views
EditText to Int
I'm new to Java and Android development so I decided to make a simple app that takes in two fields and puts them in a simple math equation. However I have to convert the EditText into Int before I can ...
2
votes
4answers
228 views
Android dialog and edittext values?
I'm having trouble saving String-values that resides within the edittext.
What happens is, the dialog shows, with edittext, an ok and a cancel-button.
When the OK button is pushed, what i want to ...
2
votes
7answers
320 views
how to set an alert box
in my app i have placed three edit boxes with a ok button. Before pressing the ok button the user must enter all the edit text fields, if any of the edit text is been left empty i want to give an ...
2
votes
3answers
471 views
Android: Limiting EditText to numbers
When creating an EditText in the java portion of the application, how do you limit it to numbers like you would in the xml? For example:
new EditText(this);
set like
<EditText
...
2
votes
3answers
410 views
How To Set Text In An EditText with Sting object
I have a String object and I would like to set the text in a EditText object. Can this be done
2
votes
3answers
1k views
EditText On A Popup Window
I am developing on Android 2.2 using Java.
I put an editText on a PopupWindow and it's not working.
It acts like a disabled edit text, clicking on the edit text won't show the soft keyboard.
How can ...
1
vote
1answer
36 views
android open message from a listview to an editext
I am trying to add the messages that are in the inbox on the listview and that is ok. I want to use the message to open it to a new edittext that is under of the listview.
here is my code
public ...
1
vote
2answers
60 views
Why cant i get these calculations to display on a textview?
Im trying to make an app that converts distance/area/volume using spinners as a unit selection method. Calculations are meant be done and then the output sent to a textview based on what is entered ...
1
vote
2answers
117 views
How to make toast when user tries to insert text longer than maximum limit?
How to make a Toast to pop up when the user tries to insert text longer than maximum limit?
<EditText
android:maxLength="28"
...
/>
I tried to use TextWatcher but it doesn't work ...
1
vote
1answer
59 views
How to change text in EditText
I'm new to Android development, and have been able to set the text of EditText elements through XML code, but how can I do it in code?
1
vote
3answers
86 views
Extending a EditText in Android. What do I do wrong?
So I'm trying to get a grasp of using custom controls in Android. But my app crashes on trying to create the activity. Here's the code:
package com.myApp;
import android.content.Context;
import ...
1
vote
2answers
80 views
How to increase the height of EditText through code in java?
I am trying to make the editText with increased height through android java code. How to achieve it? Any help is highly appreciated and thanks in advance....
1
vote
1answer
58 views
Customizing Text in Android Edit Text
I am trying to create an EditText which allows users to specifically put in typefaces like bold, italic, underline to specific portions of the text. How should I actually have it coded? How can ...
1
vote
5answers
195 views
Android Thread modify EditText
I am having a problem with modifying EditText in another function started by the thread:
Thread thRead = new Thread( new Runnable(){
public void run(){
EditText _txtArea = (EditText) ...
1
vote
2answers
71 views
Android - Getting values from a notification
I can't find anything on this on google, nor here? But I am trying to create a notification and retrieve the value of an EditText field that has been set as a custom view for the notification
Is ...
1
vote
2answers
364 views
Android programming - Multiline EditText inside ListView
I have a ListView, in which each row contains a TextView and an EditText. I find that I can't get multiline with this EditText. Whatever I type in it, the string doesn't wrap to next line. Besides, ...
1
vote
1answer
137 views
Android editText help
I'm writing an text converter app using an editText. I'va written code in the onTextChange method to replace text in the edittext.
But when the replace is done the cursor moves to the begining of the ...
1
vote
2answers
514 views
Android EditText Dynamicaly changing text to Emoticons
how can i change Dynamically the text written in the edit to an Emoticon...
Ex: "nice to meet you :) " = Dynamic Result "nice to meet you [pic]smiley[pic]":
Editest.addTextChangedListener(new ...
1
vote
1answer
132 views
Error with RelativeLayout and EditText
I am trying to add ads into my app, and I get this weird error that I just can't see how I am possibly getting it. Here is the error
05-30 20:02:48.889: ERROR/AndroidRuntime(3420): FATAL EXCEPTION: ...
1
vote
1answer
192 views
android EditText lagging when typing text
Im developing some sort of chat application, all goes wellm but im stuck with one problem.
EditText lags, my android keyboard gets freezed on second or some whenever I type some letter in edittext. O ...
1
vote
3answers
689 views
NullPointerException on findViewById() in android
In the following code i get a NullPointerException on lines 9/10 with findViewById().
In my main class I just instantiated an object from this class, to use .getFrom()
public class UserInteraction ...
1
vote
0answers
142 views
EditText saving to file, but no file created!
package com.russell.saw;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import android.app.Activity;
import android.os.Bundle;
import ...
1
vote
1answer
94 views
EditText in loop problem
In my code when I create the EditText boxes I set them to accept numbers only, but this only applies to the first column of the EditText boxes. The following columns then won't accept anything to be ...
1
vote
1answer
225 views
How to make single-line EditText draw itself correctly when using a specific size
I need to set the height and width of a EditText widget programmatically. I am using a RelativeLayout to do this, and it works fine as far as the size goes, but the actual widget paints itself ...
1
vote
2answers
702 views
String and EditText function issues in Android
i'm trying to trigger a conditional by checking the user input in an EditText field. when i print the String from the EditText to logcat, i can see the data change, but the String functions that ...
1
vote
3answers
2k views
EditText validation with TextWatcher
I have a Dialog with a EditText and a button. This EditText will name the database table I will create so its of the utmost importance it is validated. So i would like to pose 2 questions:
1) This is ...
1
vote
1answer
303 views
Switch between a TextView and EditText
Is this possible to interchange a TextView and an EditText. Like display the text when needed, but allow editing when needed. Is there a method (as in NON-XML) way of editing a TextView or non-editing ...
1
vote
2answers
124 views
Is there a built in method, InputType, or other clever way to cause an Android EditText widget to refuse to accept commas?
I am creating a comma seperated file and don't want to give the user a way to confuse the app.
1
vote
1answer
812 views
Getting character count of EditText
I'm trying to get a character count of an EditText. I've looked into different properties of the EditText and TextView classes, but there doesn't seem to be a function that returns the amount of ...
0
votes
0answers
18 views
Android : My app crashes when there is a blank editText field
I have a problem with my code.
It keeps on crashing when i have a blank editText field.
This bit of code is in the settings of my app and works the data fine but when there is a blank field it ...
0
votes
1answer
84 views
How to set font style of selected text using custom typeface through spannable method
I want to set style to selected text from EditText using custom typeface. I am getting below error at compile time. The constructor StyleSpan(Typeface) is undefined.
Below code I am applying.
int ...
0
votes
2answers
64 views
Listview with TextView and EditText per line
Dear fellow programmers,
I have to come to you for assistance with a particular activity in my android application. I would like to have a list of item descriptions with a textfield next to it. This ...
0
votes
2answers
95 views
Moving focus from one EditText to another
I designed a layout for a create account activity.
when one EditText loses focus, I'm doing some checking on the input and if something is not right I want to regain the focus on that EditText.
I ...
0
votes
2answers
53 views
Retrieving data from EditText in Android?
How do I work with whatever the user enters into an EditText, in Java? For just one example, maybe the user enters "I had a great time this weekend!" into an EditText (like a Facebook update or ...
0
votes
1answer
24 views
Can't add a view to XML layout from code
I have those code:
public class ContentEditText extends EditText {
/*
* Constructors
*/
public ContentEditText(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, ...
0
votes
2answers
36 views
Un-assign EditText Value
I have some EditText in Android. I want to make a Decision:
private void makeAnOrder() {
OrderSocket order = new OrderSocket();
String phoneNumber = this.phoneEditText.getText().toString();
...
0
votes
1answer
106 views
How add style in textView and editText from my code?
I create textView and editText in code.
TextView textview = new TextView(getActivity());
final EditText editText = new EditText(getActivity());
...
0
votes
4answers
71 views
Managing several EditTexts in Android [closed]
Possible Duplicate:
android: how to elegantly set many button IDs
Everyone.
I'm trying to build my first Android app for doing some RMS (Root Mean Square) error calculation. For this I ...
0
votes
1answer
361 views
Android: Adjusting EditText font size to fit text to one line
I am making an app that has two EditText views, txtOne which is used for input, and txtTwo which is used for output. txtOne is editable, and txtTwo is not.
I am looking for a simple way to scale the ...
0
votes
2answers
129 views
Remove default text from edit text box Android
How do you remove the default text you assign a <editText> when the user focuses on that text box?
I found the code below that looks like it should work but when I click on the text box I still ...
0
votes
6answers
76 views
How to make EditText that cannot be editted?
I am trying to make the editText that shows the text but not as editable type. I cant use textview there because i am using same component for entering the values. How to achieve it?
Any help is ...
0
votes
4answers
98 views
How to clear the text in edittext
I want to clear the text in EditText after it has been saved in database.
Here is my code:
pictureDescription.addTextChangedListener(new TextWatcher()
{
public void afterTextChanged(Editable ...
0
votes
0answers
119 views
android edittext cursor left move sample
how to move the cursor on android edit text any one done that work already i have searched hole internet i can't get it.
if (prediction.equals("Move")) {
if (et.getText().toString().length() == ...