A Handler allows you to send and process `Message` and Runnable objects associated with a thread's `MessageQueue`. Each Handler instance is associated with a single thread and that thread's message queue. When you create a new Handler, it is bound to the thread / message queue of the thread that is ...

learn more… | top users | synonyms

-1
votes
1answer
40 views

Call a method in variable period on everytime?

I have to call some webservice method in variable times, every time method runs it returns me next period time as long. I tried it with timer but after first calling, it can not understand new ...
0
votes
0answers
42 views

Timer time does not change as variable?

Here is my code, private int V_Time = 1; . . . try { final Timer V_Timer; final Handler V_Handler; V_Timer = new Timer(); V_Handler = new Handler(Looper.getMainLooper()); ...
0
votes
0answers
23 views

The specified message queue synchronization barrier token has not been posted

I have an app which as a binded service. I am sending messages to the service, but sometimes I am getting the following error: E/AndroidRuntime(28216): java.lang.IllegalStateException: The specified ...
0
votes
1answer
23 views

Error on Android Handler update interface

Handler handler = new Handler() { public void handleMessage(Message msg) { super.handleMessage(msg); ReturnShow.setText(sMsg);//ReturnShow EditText ...
0
votes
1answer
43 views

Get Current Location From Android Background Service Issue

I want to develop location based reminder app. Therefore I want to use android service for get current location even app is not running. But I didn't do. I set timer in android service class but I ...
-1
votes
0answers
23 views

InstrumentationTestRunner thread does not recieve messages posted via handler

Consider the following simplified code of my test: public class SimpleTestCase extends AndroidTestCase { /* setUp and tearDown */ public void testHandlerInInstrumentationThread() { ...
2
votes
1answer
35 views

What is the best practice for a Multithreading Handler on Android?

I have an app, which uses several HTTPRequests for example get a session id get some locationdata get existing categories (...) and some more I created a HTTPRequestHandler, which basically ...
0
votes
1answer
16 views

Updating interface handler issue

So I have these lines of codes in my android app, wifiScrollViewText is of type String, I set to whatever message I want to append to the ViewText: wifiScrollViewText through the handler ... The ...
0
votes
1answer
28 views

How to call the handler from seperate class in android?

In my application, am try to set an time out function i not able to call the handler methode in separate class. My Timeout Class public class Timeout_function { private Handler mHandler; Activity ...
0
votes
1answer
58 views

Null pointer error due to thread not stopping before orientation change

I have a fragment that displays weather data that runs a background thread that essentially just calls a function in my main UI to check whether my forecast is still valid. This function updates the ...
0
votes
1answer
54 views

calling another activity function inside an activity via handler doesn't work

I want to start a CountDownTimer from another activity. I use handlers to do that, but it doesn't work. Which part am I doing wrong? This is my code: activity1.java : public class Activity1 extends ...
0
votes
3answers
89 views

Does thread die when activity is finished?

If i start a background thread, what will happen if the activity that is started from finishes() before the thread terminates. Will the thread terminate as well or will it stay alive? new ...
1
vote
2answers
79 views

Execute all sheduled (postDelayed) runnables in Handler

I use a Handler, which post some Runnable via postDelayed(r, DELAY_TIME), but I need to execute all Runnables before posting new via postDelayed. Any good ideas how to achieve this as simple as ...
0
votes
1answer
44 views

Retrieving Handler from Messenger after being parceled as Intent in Android

NOTE: All code below is based on a C#/Mono/Xamarin.Android. I have a background service that at a certain point starts an activity and passes it a Handler, wrapped inside a Messenger: ...
0
votes
1answer
51 views

Android runnable on thread called multiple times

I am trying to implement MUC with aSmack, but seem to be unable to update the UI with the ArrayAdapter correctly. I have set up my listener in my ChatService.java like this: ...
-1
votes
1answer
64 views

Change the button color after a variable time

I'm having a problem to change the button color after a certain amount of time. I know how to change using handle after a fixed time, but I need to change the color after a specific time that is ...
3
votes
1answer
57 views

asynctask not getting arraylist when called from a handler

I'm using a handler to start an asynctask but when doing so, my application crashes. The reason I am stuck is because if I start the asynctask via anything else (eg. onClickListener) then I can run it ...
0
votes
2answers
58 views

how to stop an Handler in android

i 've created an android application on which when one button clicks handler will activate an on every 2 second a toaster will appear. same on the other way i've a stop button from which i want to ...
1
vote
2answers
376 views

How to solve java.lang.RuntimeException error occured while executing doInBackground()?

I am beginner in android development, I am getting error in following code. I am calling asyn method for http request, before that I am checking Wifi or Mobile Network is available or not. When ...
0
votes
3answers
98 views

Java Timer equivalent in Android

I recently began working with Java and am exploring Android development. I was trying to port over one of the Java programs I made, but I am having some difficulty with getting the java Timer to ...
2
votes
4answers
190 views

Async-Task in Handler? Doing multiple Async-Tasks in Row

i'm having the following problem in android: I need to process some asynchronous tasks in row (e.g. Async-Task 1 -> Async-Task 2 -> Asyc-Task 3). All of the async-tasks are answering with a ...
1
vote
1answer
30 views

Uncaught Handler error.

I am trying to do a HTTP Post and as I came to know that time consuming tasks should be used within a Async Task or a Handler, I tried to code it using a Handler but I am getting an Handler uncaught ...
0
votes
0answers
193 views

Starting another activity in Handler#postDelayed(Runnable, long) yields “SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length”

When I start an activity in Handler#postDelayed(Runnable, long) I get an error log message (yes, repeated twice): 03-19 18:39:26.628: E/SpannableStringBuilder(11502): SPAN_EXCLUSIVE_EXCLUSIVE spans ...
1
vote
2answers
84 views

Android - repeating WebService call

I need to consume a JSON webservice very often (every 5,10 sec tops). I have the webservice call implemented in an AsyncTask that is performed whenever I press a button, for testing purposes. ...
0
votes
1answer
24 views

Handler not fetching data to View

I am trying to pass message using handler to View class; but don't know where I am going wrong. Please correct me. I never used canvas to draw after getting values from Handler. Thanks in advance! ...
1
vote
1answer
61 views

progressbar activity forces close

I am new to android and trying out some tutorials. I came across the simple tutorial of handling progress bar. My minimum sdk is 11. Here is what I have tried and get the activity to forces close ...
2
votes
1answer
77 views

How do I update a ProgressBar using a Handler?

I'm new to Android and I'm trying to work through a tutorial on using a ProgressBar in conjunction with a Handler. Just a note, I am targeting API 11. Here is my code with the errors I am getting ...
0
votes
1answer
50 views

How to save a Handler in a Bundle in onSavedInstanceState()?

I have to save Strings and Integers into a Bundle in onSavedInstanceState() so when the screen orientation changes it will continue where it left off in the other orientation. Is is possible to store ...
4
votes
1answer
168 views

AudioManager sending message to a Handler on a dead thread?

I am trying to programmatically raise the volume to the STREAM_MUSIC stream's maximum value, but I am having a "Sending message to a Handler on a dead thread" issue when I do. Also, it seems like it ...
1
vote
1answer
70 views

For how long after finish() will Runnables posted to the Activity's Handler continue to execute?

I have a Handler which is linked to the UI thread. As expected, I can post() Runnables to it and have them execute on the UI thread. I also have a button, which when pressed will invoke finish() on ...
0
votes
2answers
125 views

Updating UI using a Handler freezes my app

I am trying to make a clock, using a TextView :) Someone here told me that I couldn't use normal threads to change the UI, but Handler or AsyncTask. I managed to get it working a few days ago, but ...
1
vote
1answer
72 views

Call a calling thread function from the called thread

I have an Android library class. This class is used to manage a bluetooth connection, when the socket connection is created, is starts a new thread that waits on bluetooth socket for incoming message ...
0
votes
0answers
132 views

Android thread handling issue during audio streaming

I'm facing problem with below code. My intentions are to build a MediaPlayer that buffers & plays URL audio files. I came across this tutorial, but I want to make it myself as I want to learn how ...
3
votes
1answer
92 views

Will this Handler still leak Context?

I know that if you initialize a Handler directly and use it in an Activity it will leak Context (courtesy of Alex Lockwood), for e.g. public class SampleActivity extends Activity { private final ...
1
vote
1answer
111 views

When to use handler.post() & when to new Thread()

I'm wondering when to use hanlder.post(runnable) & when to use new Thread(runnable).start(); It is mentioned in developers doc: Causes the Runnable r to be added to the message queue. The ...
0
votes
0answers
57 views

Handler.sendMessageAtTime() is reliable?

I used sendMessageAtTime() in my app to execute some specific task once a day. So it's used like this : // delayMillis is 24 hours in milliseconds mHandler.sendMessageAtTime(msg, ...
0
votes
0answers
40 views

Null pointer exception on handler

I am facing null pointer exception with respect to handler. The puzzling thing is I do not get it while debugging/stepping through the code but on execution. I have a class like this public class ...
0
votes
1answer
98 views

Create timer(Handler) when view appears and stop it when view disappears

I have been developing iOS apps for quite a time and now i have switched to android. I have a requirement in which I have to start timer(In think in Android, I need to use handler) when view ...
1
vote
4answers
165 views

Sending Message from Service to Activity

I have a Service and i try to send message to my primary Activity just like this: public void callAsynchronousTask() { final Handler handler = new Handler(); Timer timer = new Timer(); ...
2
votes
4answers
167 views

Should I manually close HandlerThreads created by my application when destroying the activity?

My app is composed of a single Activity. In this activity, I'm creating multiple HandlerThreads which run in a loop to do socket blocking operations. Currently I post a quit message to everyone of ...
0
votes
2answers
70 views

How to call a method in activity from a service

There is a service that listens for some voice. If voice matches a string a certain method is invoked in the service object. public class SpeechActivationService extends Service { public ...
2
votes
2answers
125 views

Execute long running operations on the service

I'm building an application which have a Service. I know that all application components run in the same UI process, at least you specify it in the manifest. So to avoid ANR's messages i have three ...
0
votes
1answer
153 views

onActivityResult() is not called when acquiring wakelock globally and setResult() defined in handler.postDelayed() block

I have some code that gets executed when the screen is on, but when I power off the screen, has some problems in execution(even after acquiring Wakelock globally). I have a service that acquired a ...
0
votes
1answer
127 views

Android Resources$NotFoundException inside a fragment

i have build a musicplayer project with a swipeview (2 fragments). one fragments has the start button, when i klick the start button, the another fragments shows the metadata informations of the song ...
0
votes
1answer
90 views

In App Purchase problems

Working on my latest app I am implementing In app purchases. I have looked for good tutorials online and found one from Bundell. I went over the code quite a few times, but I keep getting an Error. ...
0
votes
3answers
109 views

How can I show a DialogFragment within a Handler?

I would like to show the user a message, if something went wrong in a network communication thread. For this reason it´s necessary to show a dialog from a handler. Is this the right way?, because I ...
0
votes
1answer
172 views

Is it correct to use the Handler together with Async Task within the same class?

As you know, there is a good downloadable sample called "Location Aware" in the Android Development Guide. I have a question about the Handler written in this code. Is it correct to use the Handler ...
1
vote
0answers
34 views

Android - Constantly changing text implementation advice needed

I have a TextView which shows the amount of points the user has. Users points are filled with time to their max. I want my TextView every 20 sec. to display the time left for the point to be fully ...
0
votes
4answers
112 views

Updating UI of Android activity from some other class running on different thread

I have a activity with a Listview and a adapter attached to it. I have a class which syncs data and hold it. (I think we should not care about from where data is coming) and it runs on a different ...
0
votes
0answers
129 views

addView not rendering when called in a handler in a ViewGroup

I am trying to dynamically change the view in android (keep in mind I'm fairly new to android). For some reason when I call addView at the end, I just get a blank screen. If I call ...

1 2