The looper tag has no wiki summary.
30
votes
2answers
28k views
Can't create handler inside thread that has not called Looper.prepare() inside AsyncTask for ProgressDialog
I don't understand why I'm getting this error. I'm using AsyncTask to run some processes in the background.
I have:
protected void onPreExecute()
{
connectionProgressDialog = new ...
6
votes
1answer
3k views
How to create a Looper thread, then send it a message immediately?
I have a worker thread that sits in the background, processing messages. Something like this:
class Worker extends Thread {
public volatile Handler handler; // actually private, of course
...
6
votes
2answers
6k views
AsyncTask and Looper.prepare() error
I have the following code
class OverlayTask extends AsyncTask<Void, Void, Void> {
@Override
public void onPreExecute() {
if (sites != null) {
...
4
votes
2answers
475 views
How to better unit test Looper and Handler code on Android?
I use the android.os.Handler class to perform tasks on the background. When unit testing these, I call Looper.loop() to make the test thread wait for the background task thread to do its thing. Later, ...
3
votes
2answers
134 views
MonoDroid Looper.MyQueue() hangs on some activities / Idle Handler?
I'm using MonoDroid Looper.MyQueue().AddIdleHandler() to execute some Commands when the app is in idle mode. This is working in one activity, but if I'm starting the second activity it hangs until i ...
3
votes
3answers
834 views
android: What is the purpose of Looper and how to use it?
I am new to android. I just want to know that what does the object of Looper can do and how to use it...??? I have read the android documentation of Looper class but unable to completely understand.
I ...
3
votes
1answer
630 views
Android: Pulling the Location at Regular Intervals crashing, Looper Prepare (Yes I searched!!)
I am trying to pull the Location at regular intervals and send it over the network. Before doing that I feel it's important to verify that I am pulling the location correctly! To do that I attempt ...
3
votes
0answers
648 views
How can I do non-blocking events processing on Android?
This question is about event handling on Android. It is not specific to c++.
I need to process UI/OS events, without blocking when all events have been processed.
The reason is that the application ...
2
votes
0answers
248 views
Android Looper handler handleMessage is not called after sending a message to it (HTC EVO 3D)
I am experiencing a very strange problem:
On HTC EVO 3D, sometimes, a looper does not call handleMessage after a message is sent to the looper's handler. It happens twice and very difficult to ...
2
votes
2answers
2k views
Android: Only one Looper may be created per thread
I am having a problem with Android looper. I have a class that has extended AsynTask. Inside doInBackground() method i have Looper.prepare() and some code below.
It runs well and good for the first ...
1
vote
1answer
46 views
Does an Android Looper thread use processing power?
This question would probably also apply to the general world of Java threads...
I have a thread that I use like so (this is in the run method):
Looper.prepare();
Handler rHandler = new Handler(){
...
1
vote
0answers
59 views
TimerTask, Geolocation and Looper
I need to perform the follow logic in my application:
Every minute, I want to be able to listen to GPS location for 20 seconds to get a GEO-location fix.
This obviously needs to run a different ...
1
vote
1answer
280 views
Service, Observer, and Loopers
I am trying to create an application that contains Content Observers in a remote service but kept getting the error:
"Can’t create handler inside thread that has not called Looper prepare"
I have ...
1
vote
1answer
474 views
Specifics on using Looper.prepare() in Android
I'm having a bit of trouble understanding how to use the Looper prepare()/loop()/quit() logic. I have three threads, one is the UI thread, one is a game logic thread and the last is a network ...
1
vote
2answers
354 views
How to properly call AsyncTask from a separate thread?
I'm developing a game, that is running in a separate thread. Now I need to download an image from Internet. I've written an AsyncTask class for that, but I can't figure out how to properly call it ...
1
vote
2answers
954 views
Handler-Looper implementation in Android
I have Activity with Handler (UI thread)
I start new Thread and make handler.post(new MyRunnable()) - (new work thread)
Android documentation said about post method: "Causes the Runnable r to be ...
1
vote
1answer
1k views
StrictMode confusion - how is this the wrong thread?
My issue:
12-18 17:05:03.336: DEBUG/StrictMode(2112): StrictMode policy violation; ~duration=2073 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=23 violation=2
From the factory ...
1
vote
2answers
2k views
Android: Issue using a handler and postDelayed()
I am trying to use a Handler to have some code execute in some amount of time.
This works well in 2 of my classes, but I'm running on an issue with this one:
One of my class extends Activity, and ...
1
vote
0answers
464 views
Android: looper/handler vs. Java Observer?
Aren't these competitors? I'm thinkin they're not, but don't see it.
How about within the context of an Activity needing to learn when a Service has new xyz?
Thanks!
1
vote
1answer
813 views
CountDownTimer: “Can't create handler inside thread that has not called Looper.prepare()”
I know the general problem of "Can't create handler inside thread that has not called Looper.prepare()" has been asked before, but I am struggling to understand how it applies in this case.
I am ...
1
vote
4answers
5k views
How to raise a toast in AsyncTask, I am prompted to used the Looper
I have tasks completed by AsyncTask in background. At some point I need to issue a Toast that something is completed.
I've tried and I failed because
Caused by: java.lang.RuntimeException: Can't ...
0
votes
2answers
49 views
Looper.prepare() with AlertDialog
I would like to insert a time counter inside a game. If the time is 0, there would be an AlertDialog which tells the user the time is out, and goes back to the previous Activity. Here is the method ...
0
votes
1answer
47 views
Android Threading - Queue runables
I try to write a little game using android and have some problems with threading.
The mainloop of the game runs in this own thread and basically just does something like this:
public void run() {
...
0
votes
2answers
81 views
RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
I've got a code with an ASyncTask and the problem is that when I execute it several times it crashes with this exception: RuntimeException: Only one Looper may be created per thread
But then I've ...
0
votes
1answer
154 views
LocationManager and Looper - only one Looper may be created per thread
I am having an issue with my app. I need to get Location Updates at certain interval's and therefore basically need to be able to control the GPS module pretty well, this is not really easy with the ...
0
votes
2answers
91 views
A WebView in a thread can't be created
i have some threads in which i create some views and prepare them to be displayed. Among them i also have a WebView. This code is executed in thread:
WebView lGraphWebView = null;
try{
...
0
votes
2answers
182 views
Android AsyncTask Dialog Alert
I have a splash screen which check an URL if there's any new content on the server. If show i wish to show a AlertDialog, to the app user so that depending on the action of user,i.e if YES download ...
0
votes
1answer
442 views
Only one Looper may be created per thread Error, Async Task
The code at the bottom of this post is triggered by the following line of code.
new MasterClickAsyncTask(main).execute(position);
The doInBackground portion of code below calls a method containing ...
0
votes
1answer
35 views
Android code segment doesnt run without breakpoint (thread)
I have some code that will not run if I don't have a breakpoint. My speculation is that the code gets executed too quickly, and the time between me allowing a breakpoint to continue lets a thread lock ...
0
votes
1answer
184 views
Looper.getMainLooper().quit() doesn't quit Android unit test
I have written an Android-Mock test which in turns calls code which uses a few Threads and handlers.
I want my test to end when all handlers have finished.
But when I call ...
0
votes
1answer
124 views
how to exit ALooper_pollAll before the timeout expires
Within my android_main, I make a call to ALooper_pollAll with a negative timeout value so that it waits indefinitely until an event appears. However there are cases when I need to be able to manually ...
0
votes
2answers
416 views
How to cancel Service/IntentService/AsyncTask/Looper
I'm going nuts here.
I want a simple thing - I have a long task (fetching several data objects from the web) and I want the ability to cancel it.
I tried a lot of things (a lot) and nothing works
The ...
0
votes
5answers
565 views
Android: requestLocationUpdates throws exception
I'm trying to get periodically the user position via GPS in Android and send the data to a remote DB, but I get the exception: Can't create handler inside thread that has not called Looper.prepare().
...
0
votes
3answers
772 views
Android: cant create handler inside thread that has not called looper.prepare
I know this kind of question exist but I'm confused in this case. I'm using the following code:
package com.example.GetALocation2;
import com.example.GetALocation2.MyLocation.LocationResult;
import ...
0
votes
1answer
221 views
java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
I am using simple thread to execute the httpGet to server when a button is clicked, but I get this after execution.
Button b_back = (Button) findViewById(R.id.bback);
b_back.setOnClickListener(this);
...
0
votes
2answers
196 views
Android Looper confusion
Android is complaining that the code below needs to call Looper.prepare. I have tried adding Looper.prepare but the code crashes after the sixth execution, leading me to believe that it wasn't as ...
0
votes
1answer
344 views
Android: difference between getMainLooper() and Looper.myLooper()
I'm now trying to resurrect one project.
There was an exception on getMainLooper()...
I thought that may be there's a problem with MainLooper initialization and added Looper.prepareMainLoop() before ...
0
votes
1answer
275 views
`Can't create handler…Looper.prepare()` in inherited Activity
I have a Game Activity (Activity A) that works well with all the code. Then I create a new Activity (Activity B) for my new game mode, that extends Activity A. However, when encounter the Toast line, ...
0
votes
2answers
738 views
Android: TimerTask scheduled for repetition getting fired only once
Ok this is a very weird problem I am having, and I'm pretty sure that I am messing up somewhere, but I can't quite figure out where.
What I am trying is -
Schedule a Timer to execute a TimerTask ...
0
votes
2answers
709 views
get main thread's message queue and handler
How do I get the message queue of the main thread from another thread? Looper.getMainLooper() gets the main thread's looper but I am unable to find a way to get the MessageQueue for another thread's ...
0
votes
1answer
270 views
Android, honeycomb animation (“Animators may only be run on Looper threads”) error
I had a previous project in which I could generically use the ObjectAnimator class to animate any class like this
ObjectAnimator oa = ObjectAnimator.ofFloat(testShape, "translateX", 0f, 000f);
...
0
votes
2answers
627 views
How to manage Loopers and Threads (thread doesn't die anymore!)
I created a class extending Thread to retrieve user location through LocationManager in a non-ui thread. I implemented this as a tread because it has to be started on request and do its work just for ...
0
votes
1answer
999 views
Why does Android service needs to run on UI thread?
I have a probably simple question. I have an android service; where in I have created a generic service class which requests locks and executes actual (extending) service code in a separate thread. ...
0
votes
2answers
454 views
how to create a handler inside thread in android
i tried to show the toast from thread.
Toast.makeText(activity.getApplicationContext(), "This is the Toast message", Toast.LENGTH_LONG).show();
but throws the exception
...
0
votes
1answer
257 views
Create Handler in a class without get error “Looper not prepared”?
In my game, there is an game object class that need to use Handler to post a delay Runnable. However, everything I try to create an Handler in the object class, I receive error message:
Can't ...
0
votes
2answers
2k views
Calling Looper more than once causes “sending message to a Handler on a dead thread”
I am using an Executor [fixed thread pool] with my own ThreadFactory that adds a Looper:
Handler HANDLER = new Handler();
Executor THREADS = Executors.newFixedThreadPool(THREAD_POOL_SIZE, new ...
0
votes
1answer
240 views
What is blackberry's equivalent to Androids Looper?
Android has Looper, and iPhone has Run Loops. It seems like Blackberry would have a similar backed in facility to queue and run threads.
Does anyone know if there is?
0
votes
2answers
861 views
Android - Inter thread communication and network socket
this is what I am trying to achive
1) My main application/activity starts a thread to listen to network messages (tcp). But I want this thread to listen to network messages (on tcp socket) as well as ...