Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
571 views

Android setting problem with TextView for Hebrew text?

I am setting text in TextView from string resource. Normally, Hebrew works in Right-To-Left format. When I set a text, it sets the text Right-To-Left format in LG, Samsung, Sony Phone but in HTC it ...
3
votes
2answers
99 views

Memory leak when using setText

I have noticed that I have a memory leak in my program. I have traced the problem to the line. Clock.setText("" + h + ":" + df.format(m) + ":" + df.format(s)); I have googled this and it seems to ...
2
votes
1answer
200 views

UIButton setTitle forState Not Working

I'm trying to set the text of a UIButton on a new view when a "Next" button is pressed from a previous view. I have set the IBOutlet correctly and I've looked all over for answers to this but it just ...
2
votes
2answers
204 views

JTextField's setText method doesn't work from a KeyListener

I'm puzzled as to why a JTextField doesn't seem to just "clear out" by using the setText("") method on it, when this is coming from a KeyListener. It works fine from an ActionListener, except that, ...
2
votes
2answers
446 views

Changing tab text in a Honeycomb Action Bar tab after it has been created

I'm trying to get use to Android Honeycomb by creating a simple text editing application which utilizes the Action Bar and tabs. I am running into an annoying issue though. After a tab has been ...
1
vote
4answers
52 views

How would i store a number/string into R.string.xx?

with this code, my program just force close(error) ***public View x = findViewById(R.string.nfoname);*** @Override public void onCreate(Bundle savedInstanceState) { ...
1
vote
1answer
76 views

JLabel.setText() method

So i was writing a program to solve a quadratic equation, and everything works apart from when it comes to making 2 JLabels (previously empty) show the answers, (this happens when the user clicks a ...
1
vote
2answers
116 views

Android Edittext: Get LineCount in an Activity's onCreate()

How can I do getLineCount() of an Edittext in the onCreate() method of an activity, having changed the Edittext's text, like the following: @override public void onCreate(Bundle ...
1
vote
2answers
108 views

How to print a DOUBLE with only two decimals in Android?

Maybe this is a silly question, but I cannot guess how to solve it if it's not creating a method. Maybe there's a "natural way" to do it, like in C for example. Here's the problem: I have a var: ...
1
vote
2answers
81 views

setText makes the application stopped unexpectedly

After added checkAnsText.setText the application stopped unexpectedly. I cant find where the error is. I hope someone can help me Here is the code public class QuestActivity extends Activity ...
1
vote
3answers
117 views

Changing text from another activity

How to dynamically change the content of a TextView from another part of the screen? I have a TabActivity class that draws a RelativeLayout that contains a TextView followed by a with several tabs. ...
1
vote
2answers
609 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
3answers
166 views

Android activity is too busy to set TextView text?

i have a function that fill up my SQLite DB with entries of a http query: try { stringEntity = new StringEntity(SQL); httpPost.setEntity(stringEntity); httpResponse = ...
1
vote
1answer
150 views

Sending text to static control

I ve got problem here. I want to get info from AVI file and then ask user what he wants to do with it. For this I have dialogbox and there (among other things) I have static text control where I want ...
1
vote
3answers
144 views

setText, resets and locks when entering landscape

Hey all thanks for looking this through. I really can't understand why this happends, though it might have something to do with my background thread which is processing audioinput. All works fine ...
1
vote
4answers
4k views

error: Only the original thread that created a view hierarchy can touch its views

Hi and thank you for looking at my question. I am an intermediate programmer in C but a retard in android. I have been trying to get a chat programming working. Assuming everything else in the code ...
1
vote
3answers
147 views

Using setText with rules regarding the current time

This is my .java file in src: package com.wao.texttime; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class TextTime extends Activity { /** ...
1
vote
1answer
224 views

TextView Crashes When Setting Text

For some reason my application crashes when I try to set the text of a textview? How can I over come this. private TextView strStatus; /** Called when the activity is first created. */ @Override ...
1
vote
1answer
299 views

Calling TextView.setText() periodically causes the UI to jerk

I'm coding an audio player where a thread updates the TextView representing the track's elapsed time, every 250 milliseconds. The display looks like this: 1:30/2:30<-----Progress Bar-----> ...
1
vote
2answers
888 views

Strange behaviour in Expandablelistview - Android

Im trying to implement an activity that uses ExpandableListView and I have gotten so far but now I have found some strange behavior. My activity is meant to record food intake as specified by the ...
0
votes
3answers
52 views

setText doesn't set text

I have a class that fetches som data from a website. I've followed TheNewBoston's tutorial (147-149 I think) and copied what he writes exactly, but it doesn't work for me. The problem is the setText. ...
0
votes
3answers
20 views

How would i pass reference value(basic)?

In my FormActivity, there are two EditText's: EditText editname = (EditText) findViewById(R.id.idname); EditText editage = (EditText) findViewById(R.id.idage); then when user clicks: String name ...
0
votes
0answers
9 views

How to retain value everytime i visit the page?

this is part of my editinfo.xml file, this is a basic form with name, gender, and age <TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" ...
0
votes
1answer
37 views

cannot touch view from another thread, how to make it possible?

I cant figure out why i cant set text to my textView tv. getting: E/AndroidRuntime(686): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy ...
0
votes
1answer
26 views

label not updating in setter

ok so this problem is kinda weird because the NSLog I have right in front of the line of code that should be printing out the text is returning the correct value. Here's the code: ...
0
votes
2answers
40 views

setText and setValue not working properly

i'm trying to create a simple program that will upload a few files for me to a windows share. I have all the basic functionality but i have problems with some finishing touches. I have a GUI and i ...
0
votes
1answer
20 views

Affecting views from other views

I have a game loop running in a GLSurfaceView. As soon as a certain list returns .isEmpty() then the loop knows to stop running. Changing the boolean is simple enough but I want to be able to setText ...
0
votes
0answers
30 views

How to display int value obtained from spinner in android

I am trying to convert a spinner value that i get (based off the position) into an int value which i can then display below the spinner. When i run the code it gets an error when i include the ...
0
votes
1answer
53 views

Android setText error

I have a view in the XML <TextView style="@style/TitleBarText" /> whose styles are defined in values/styles.xml as follows <style name="TitleBarText"> <item ...
0
votes
1answer
32 views

Issue with setText in Java Gui JGui not numbering correctly in Java

Thanks for taking the time to look at another of my questions. This seems like a basic issue but I cannot work it out. Im working on a program which contains employees and has departments that these ...
0
votes
0answers
102 views

Cannot clear edittext after setText()

this is my code , but the problem is when the I want to clear some chars i cannot TWL=new TextWatcher(){ public void afterTextChanged(Editable s) { } ...
0
votes
2answers
81 views

Force close when add setText()

the following is my code : name = (EditText)findViewById(R.id.editText1); name.addTextChangedListener(new TextWatcher(){ public void afterTextChanged(Editable s) { ...
0
votes
4answers
438 views

Android Eclipse editText not displaying after setText on local instance

I call on a few EditTexts via "instanceOf" because I don't necessarily know the exact names / ids of them. When I do this to get the text, it works just fine. But when I try to setText() based on ...
0
votes
2answers
265 views

TextView and setText from class

I know there's a couple of questions about this out there but I still don't get it. I have an activity package test.example.om; import android.app.Activity; import android.os.Bundle; import ...
0
votes
3answers
213 views

SetText to a TextView

I want to set text for a textView by code. My text is something like this :" aaaa \n bbb\n ccc" and if I use setText() method on screen I got exact in this format, and not like this : "aaaa bbb ccc". ...
0
votes
2answers
67 views

It is possible to set the text of a “TextView” from within a class 'extends View'

I've insert a custom View called "disegno" inside a Layout xml: <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
278 views

SetText in TextSwitcher using BaseAdapter

I have a layout with an ImageSwitcher, a thumnail gallery, and a TextSwitcher. I would like the TextSwitcher to update text based on which thumbnail is selected. I have tried using a baseadapter to ...
0
votes
2answers
212 views

setText : is deprecated

i tryed to learn how working with a sql data source, i've find a sample name SQLiteTutorial in apple's sample What bad, apple did not update their samples, so when i open apple sample file i've got ...
0
votes
0answers
70 views

NullPointer exception while using .settext for PopupWindow

I seem to be hitting a nullpointer exception while running this code snippet... and for the love of me i can't think of why. Seems to be at the .settext method. private void showPopup(Event e){ ...
0
votes
2answers
130 views

how to set new text in JTextField after creation?

I have a jTextField , and I set it's value to a certain sum when I create the frame. Here is the initiation code: totalTextField.setText( itemsPriceTextField.getText() + ...
0
votes
1answer
160 views

Class file errors when using onLongClick with setText

Android beginner here. I created this little program to try and learn buttons and textviews. When attempting to use the onLongClick to setText, I get a force close. When I look at the debugger I see ...
0
votes
0answers
308 views

TextView and Button doesn't refresh/redraw/re-render

Code: package elf.app; import elf.app.comm.CommClient; import elf.app.comm.CommListener; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.View; ...
0
votes
2answers
140 views

How to set view or Activity for dealing with previous listactivity? for example “see full detail page”

THis is my ListActivity after click on list it will start new activity which show Full detail of each attraction place. I have no idea how to implement Full detail page. Can you guys show me some ...
0
votes
0answers
43 views

UILabel doesnt get updated

Each time i get a response from the server i have to update the label text. the code which i used is [labelName setText:status] where status is the string i want to display. this status changes based ...
0
votes
2answers
549 views

Android eclipse random string array for setText?

If I understand correctly Random ran = new Random(); String[] ButtonText = null; Resources res = getResources(); ButtonText = res.getStringArray(R.array.ButtonText_array); String ...
0
votes
1answer
246 views

Android - How do I change button text to arraylist item

I've got a grid of nine buttons and at the moment each one displays the numbers 1-9 as text and another button which will change the numbered buttons text to a different number from 1-9 when clicked. ...
0
votes
3answers
764 views

When using a ListActivity, can the “android:empty” TextView be programmatically setText()?

I am populating a ListActivity's ListView using an ArrayAdapter extended to apply some conditions to the data it returns. It's possible for the adapter to return an empty set for several possible ...
0
votes
2answers
2k views

How to update a UILabel in Xcode programmatically without XIB files?

I'm stuck :( In my application I require an update from CLLocationManager every time it gets an update to a new position. I am not using XIB/NIB files, everything I coded I have done programmatically. ...
0
votes
3answers
478 views

'setText' is deprecated

Hey guys, So i'm building an app combining Table View and Navigation Controller into my Tab Bar application and while it's compiling, I bumped into an error saying: 'setText' is deprecated This is ...
0
votes
4answers
1k views

Swing/Java: How to use the getText and setText string properly

I'm trying to make input (nameField) appear in a label(label1) after button1 is being clicked. Right now it says: 'txt' and I understand why. But I don't know how I can use the string! Can anyone ...

1 2