0
votes
1answer
39 views

Xml getText return null - Android

i'm using XmlPullParser on Android but get getText return null. Why is this happening? The code, the commented line gives the null ArrayList<String> titleList = new ...
0
votes
3answers
50 views

AlertDialog has not come out because cannot getText of a button

My Alert dialog message doesn't come out because I cannot get the text of the button. After that the program will directly go to my EventActivity. How can settle this problem? public void ...
0
votes
3answers
65 views

Android Prorgram Crashes when i attempt to getText() from an autocompletetext

I am trying to build an android app that allows you to input text, and will then transfer the text to the main screen. It allows me to build the autocomplete with no issue, but whenever i try to ...
0
votes
2answers
26 views

Button text and string from text file (from asset) should be the same, but not in Android

I would like to make a quiz program. The questions are in a text file in asset folder. The answers are also in the asset folder called the number of the question (for example: the first question ...
1
vote
1answer
174 views

android setText with getString using variable name

So, searching the internet I found many examples that were not what I need... Here is my situation: Imagine that you have a resource that is an array called songs and many 's with each song ...
1
vote
1answer
144 views

EditText with number input only returns 0 as string

I have an EditText that only accepts numerical input and I am using the following code to turn that input to a string so I can use it later. scoreString = ...
2
votes
3answers
201 views

TextView not displaying EditText string on user input

Heres the scenario: A user enters a team name into an EditText field, the text of that is then the new name of a TextView (using setText()). If the user has not entered anything into the EditText ...
0
votes
2answers
265 views

how to setMessage dialog with EditText Android

I want to create dialog for looping dialog and view edittext into dialog. when activity start, dialog show to looping dialog no.1 dialog looping = no.1 input user dialog looping to for show input ...
0
votes
1answer
25 views

Testing android:text produces different results depending if it has been modified

I'm experiencing this on my code and I cannot figure out why. Basically I'm setting android:text to "0" on XML and when checking with getText if it's "0" it returns false. If I set it to 0 with ...
0
votes
3answers
59 views

Get info from view that triggered onclick?

I'm completely new to Java and android. I ended a tutorial and I'm building a simple calculator to learn the ropes. I basically have a view like this: <button android:onClick="addText" ...
1
vote
1answer
894 views

The method getText() is undefined for the type EditText — How?

Yes, I'm totally new to this platform, but getText() IS a method of EditText, is it not? I just copied and pasted the exact error from my simple app, which I copied word-for-word from a web tutorial. ...
2
votes
3answers
206 views

Android 2.1 getEditableText() returns null / empty string

I have a simple application that has one edittext field, and one button. The button I want to take in the value of the edittext field and store it into a string (to parse later). But I am stuck at ...
-2
votes
3answers
304 views

android getText error

I am attempting to pull text from a TextView field as follows: <TextView android:id="@+id/text_random_text" android:layout_width="wrap_content" ...
-3
votes
4answers
211 views

Android:Null pointer exception in edittext [closed]

Hi i am making an app in which i have to get the first word entered in editText is number or alphabet .I used Final EditText et=(EditText)findViewById(R.id.etext); et.setOnFocusChangeListener(new ...
2
votes
1answer
94 views

get text of a TextView in android home widget? [duplicate]

I just begin programming with android home widget, so i could set text to a textview in home widget from my widget provider but when i want to get text from it, i have no ideal. Can not findById() and ...
0
votes
2answers
278 views

getText() of an array of TextView initialized in .xml

I have defined the TextView array as final. And I set a OnClickListener() for all the array elements, and I am able to use setBackground (even the array is not set as final). But I cannot use ...
2
votes
0answers
548 views

How to get title of fragment dialog window (app uses ActionBarSherlock)

I need to compare strings from title of fragment dialogue with R.id.string from resources. It looks like smth like this (user Robotium). ...
0
votes
2answers
581 views

Get value of an EditText field

I'm an android newbie and as a test I want to make a program that insert text in EditText and display it. I want my program to show a dialog box that states "Please insert comments first" when there ...
0
votes
0answers
261 views

Android Dynamic EditText boxes + getText

Basically I've added EditText boxes dynamically depending on what is pulled back from the ArrayList. for (int index = 0; index < info.mon.size(); index++) { String temp = ...
-1
votes
2answers
138 views

Code not working, Though it worked before

I was wondering if anyone could help me here. I am creating an Android application as my final project and it's running fine currently except for one part. The problem I have is that this class is not ...
2
votes
1answer
258 views

Android EditText value not showing up, getText returns a value

Everything in my Activity is working fine. I'm able to load all the values fine and show in every EditText except one. The sequence of the actions on onCreate is @Override public void ...
2
votes
1answer
742 views

Android Edittext- Clearing Spans

I am trying to get an EditText to clear its spans by calling EditText.getText().clearSpans(). However, if I call this method, the EditText starts to behave strangely, with line feeds appearing as ...
-1
votes
1answer
732 views

Use getText() and setText() Method in one XML for Android

I'm trying to create an xml which gets me the text of the the editText field. Although it works but I am only getting the typed in text for only the last field. This is my code: TextView textOut; ...
0
votes
3answers
637 views

httpget not working due to “not trusted server certificate” but it works with httpost

I have a code that needs to go to the website below and extract the text. In another part of the project I use the httpost method and it gives me a response based on what I've sent. However for the ...
2
votes
2answers
1k views

Why does getText() and getEditableText() on a AutoCompleteTextView always yield an empty string?

The goal for my project is save the login ID and also, when user types in login ID if it is already saved, it should auto complete. I am trying to save the entered values to a SQLite DB and then read ...
1
vote
2answers
2k views

Android: getText and setText not working on EditText with onKeyListener

I'm working on an Android application and have a view with 3 EditTexts. What I'm trying to achieve is that on a numeric key being pressed in the last one should call the okKey event for that activity. ...
1
vote
2answers
3k views

Trying to convert Edit text to String, got error with “name”.getText().toString() line

I am trying to use the new window and attaching edittext to get name from the user. It just always fail when it hits the line " "name".getText().toString()" Here is my main public class chatter ...
0
votes
2answers
654 views

Android: problem in getText method of EditText

In my project I have two activities or classes. In first activity I have a EditText and I want to get the text of it from second class. In the first class I wrote this code but it seems has problem. ...