The looper tag has no wiki summary.
1
vote
2answers
34 views
Source not Found on Android
Whenever I try to debug my app, Eclipse open a Class File Editor and gives a Source not Found and generally for basic Java classes (For example, Looper.class). I am really sick of this. I cannot debug ...
0
votes
1answer
18 views
LocationManager: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
Normally an error while doing something on the UI thread from another thread I thought, but I don't get what I'm doing wrong. The error seems only to appear when the phone is travelling, so with a ...
-1
votes
0answers
67 views
AsyncTask onPostExecute not called
I am experiencing some problems with AsyncTask instances not executing their onPostExecute methods. This problem has been reported many times before, but mostly because of faulty method interfaces, or ...
0
votes
1answer
57 views
Android worker thread with its own Handler/Looper
I want to have a worker thread that can 1) send messages to the UI thread to change things in the GUI, and 2) receive messages from the UI thread to control the worker thread's behavior.
The first ...
1
vote
0answers
112 views
Android AsyncTask vs Looper Handler
I have implemented a background service that queries the database every 5 seconds. If the query returns no results, the service should wait for 5 seconds and query database again. If the query returns ...
0
votes
2answers
60 views
Android method that shows ProgressDialog, runs worker and waits for worker finish
I need to write static method that shows ProgressDialog, runs worker in thread and after worker finished ProgreesDialog must dismiss and my method return what worker did.
This is my code:
public ...
0
votes
1answer
72 views
Interrupt a thread while loop using message from UI
I'm sure the solution to my problem will be one of those "duh" moments, but I'm stuck so any helpful hints would be gratefully received.
Problem: I have a UI with a background thread. The UI has a ...
0
votes
0answers
34 views
Looper.loop not called but code in handler is still executed
I am trying to understand how looper.loop works, and when to use it in my code.
I have a bound service that has a runnable. Inside I have a handler that is used to hold code that updates the Ui. Here ...
0
votes
0answers
20 views
Android App Force Close when i upgrade it,and if i uninstall old version and install new,it well
When I upgrade my Android app from lower version to highter ,i Catch exception"Can't create handler inside thread that has not called Looper.prepare()".
03-29 10:40:12.992: E/AndroidRuntime(6822): ...
1
vote
3answers
154 views
Handlers initialized with Looper.getMainLooper() does not respond to message callbacks
I am trying to implement Handlers listening on the same Looper from different threads.
Below I have two Handlers, one created in the main thread, another in the child thread, however both are ...
0
votes
2answers
221 views
Check for internet connection constantly, and if connected, running code (Android)
I would like to constantly check for internet connection and change TextView if connection appears or disappears. But the TextView doesn't change until I refresh the application.
Here's my current ...
0
votes
1answer
109 views
How to correctly use the HandlerThread with a socket?
I've been looking at the HandlerThread class as originally I was using a simple thread and handler, but came a cropper with the NetworkOnMainThreadException in android.
I can't seem to understand how ...
0
votes
0answers
206 views
Mono for Android Handler.PostDelayed always fires twice
In my app I have a service that runs on its own thread. This service acts as a timer, and the ticks are handled by a handler. The handler is initialised thus:
private void SetUpHandlerThread()
{
...
0
votes
2answers
136 views
Android: is it possible to restart Thread's Looper?
I have a simple question: is it possible to restart (re- loop()) thread's Looper if it was previously quit. For instance, i have design my thread as follow:
public class ProvaThread extends Thread ...
0
votes
2answers
129 views
use Looper.prepare to display dialog window
I want to display a dialog window after execution of a work, AND progress dialog should be displayed untill the work is finished.so i try to use thread in following code.
ProgressDialog dialog=new ...
0
votes
2answers
74 views
Looper not called outside the Thread class
I am learning how to use Looper and Handler class in android development
http://developer.android.com/reference/android/os/Looper.html
The example given in the android development is not clear to ...
0
votes
0answers
136 views
Stop current playing video and play another video in a Videoview in android
I am using VideoView to play video files. Now i want to stop current playing video and play another video file.. I used
videoview.stopPlayback();
then set new URI to that videovideo and ...
0
votes
2answers
116 views
Method call for Looper.prepare() and Looper.loop() for main UI thread in android
In android in case of UI Thread we just create Handler because main UI Thread already have its Looper.
I want to know where is call to Looper.prepare and Looper.loop for UI thread in framework code. ...
2
votes
0answers
105 views
Android LocationListener: is removeUpdates necessary?
When developing a location-aware Android application using a LocationListener, is it obligatory to call LocationManager.removeUpdates() before the application finishes?
Or more generally, is it ...
0
votes
1answer
106 views
Android Threads and Messaging
I'm working on an Android app that uses uses a background worker thread. I need to be able to send messages to the thread from the activity, but I can't quite figure it out.
I have one activity, and ...
0
votes
4answers
300 views
Using looper inside AsyncTask
I want to display a progress dialog while my video is being loaded and I used AsyncTask but got the following error:
cant create handler inside thread that has not called looper.prepare
then I ...
1
vote
1answer
177 views
Android Looper and Thread doesn't seem to work
Hi I am trying to use a thread with a handler and a looper in Android.
Thread class:
public void run() {
Looper.prepare();
handler = new AndroidHandler(context);
Looper.loop();
...
0
votes
0answers
346 views
LocationManager requestLocationUpdates
I wrote the following code, in order to have callbacks on a thread when a location update is received (this is the main thread):
Handler handler; // this Handler is initialized in the following ...
0
votes
1answer
262 views
Android: LocationManager constructor's looper
There is the possibility to start retrieving notifications from a LocationManager with the following method:
requestLocationUpdates(String provider, long minTime, float minDistance, LocationListener ...
1
vote
4answers
645 views
Why do I need a Looper in my AsyncTask?
I want to use AsyncTask for update my db4o with a server. In the doInBackground method , I connect to the server, update the db4o, and schedule a pendingintents. Not modify UI or show any toast.
...
1
vote
1answer
123 views
Android handler & Looper.prepare() issue
Im creating a space shooter game for android, im currently implementing the shooting methods but getting some problems i cant figure out when trying to create new shots and drawing them.
i have this ...
5
votes
2answers
531 views
what is the relationship between Looper, Handler and Message queue ?
I am new to android, and got very confused with those concepts. I have check the official guide, still didnt quite get it. what is the relationship between Looper, Handler and Message queue?
1
vote
1answer
446 views
android:Can't create handler inside thread that has not called Looper.prepare() [duplicate]
Possible Duplicate:
Can’t create handler inside thread that has not called Looper.prepare() inside AsyncTask for ProgressDialog
In my program I want show progress-dialog, for that I have ...
2
votes
1answer
385 views
Thread Inside Broadcast Receiver Android
I am getting a DownloadManager.ACTION_DOWNLOAD_COMPLETE broadcast upon getting I am required to extract the zip file and fill the the data base I have written the code to do my work .But I have to ...
0
votes
2answers
194 views
Where/how I can get a Looper? [closed]
Where/how I can get a Looper according to the C++ standard or C++ standard libraries ?
I need to design my own callback system and, of course, I need this one to manage my queue and my components.
A ...
1
vote
2answers
122 views
failed to create polling location service android
I am trying to create a polling service for location which starts for updates for location and waits 2 mins
and then removes the updates
when i try to send location using my emulator it seems my ...
0
votes
0answers
119 views
Can a thread's handler be initialized in the constructor before calling Looper.prepare?
I'm having synchronizations issues with my app. I create three threads and each of them has a looper/handler running. After reading several tutorials I came to initializing the pair like this:
...
0
votes
0answers
26 views
differences between LOOPER_ID_* for a native application under Android
Can someone explain to me what are the differences between
LOOPER_ID_MAIN
LOOPER_ID_INPUT
LOOPER_ID_USER
?
I have simply no clue what is the point of this labels and their possible meaning for the ...
0
votes
0answers
97 views
Can I get a non-blocking Looper?
I have a Thread with a message-Looper for some Location calculation.
For this i call:
LocationManager.requestLocationUpdates(mProvider, mMinTime, mMinDistance, (LocationListener)this, looper);
To ...
2
votes
1answer
155 views
The behavior between ui-threads messagequeue, looper and the handler class
I post this question because i wanna know if my thoughts are right about the basics.
What should be clear is that the UI-Thread contains a MessageQueue, which is associated with a Looper to get ...
0
votes
2answers
299 views
Asynctask from loop gives error on 2.3 and older
Lately, I've encountered more and more errors that may seem easy to someone with more experience, but are quite hard for me to figure out.
I'm trying to create a background service that checks for ...
0
votes
2answers
1k views
Thread, can't create handler inside thread that not called looper.prepare
I am getting the "can't create handler inside thread that not called looper.prepare" error when trying to call,
locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locListener);
...
0
votes
2answers
486 views
Android Handler.getLooper() returns null
I have following problem. I have this implementation of my Thread with Looper.
public class GeoLocationThread extends Thread{
public Handler handler;
private General general;
public void run(){
...
0
votes
1answer
30 views
How to obtain the handler for a secondary activity started by a first activity using an intent?
I have a main activity in my project from which i am starting a secondary activity using an intent. On a separate thread, I want to get the handler of the second activity for send some control ...
0
votes
2answers
452 views
How to get an AlertDialog to work, while background is rendering, and not crash the app?
Here is the source:
package ff.ff;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import ...
0
votes
1answer
235 views
AlertDialog: After showing the dialog, background Canvas rendering continues, but the dialog never close
Here's a screenshot of my AlertDialog's unresponsive state:
In the background, the green tile, the red ball inside a the black-and-white target, all three of the bitmaps are continuously rendered ...
0
votes
2answers
1k views
When should we use Looper in Android?
Can someone please tell me when we should use Looper in Handlers? I have a codebase in which there are multiple threads and handlers. But Looper.prepare() and Looper.loop() is not called for all of ...
0
votes
1answer
122 views
Broadcast Receiver and Toasting
All,
I have a broadcast receiver that does not have an associated layout or any activities. It is listening for some to unplug something from the audio jack.
I have been able to get my receiver to ...
0
votes
2answers
214 views
AsyncTask cancel method throws handler error
I have a simple activity in which I start an AsyncTask with a button and stop it with another.
In AsyncTask I use a LocationListner to get updates from the GPS sensor and calculate the distance ...
1
vote
1answer
188 views
Force flushing MessageQueue of UiThread android
I want to flush content to the display as soon as possible but my setup code which is want to have on the UI Thread is taking too long. There is nothing rendered on the screen until everything is ...
0
votes
1answer
42 views
Assigning unique values to each case of a variable inside loop
I have a variable name subject. For each unique subject there are 240 response latency recorded. Depending on that experimental condition is counterbalanced between-subject. Now I want to read the ...
1
vote
1answer
2k views
Implementing LocationListener on a service thread
I'm trying to get the location updates running in a background service. The service is running a workerthread of its own doing a lot of other stuff already, like socket communication. I'd like it to ...
0
votes
1answer
220 views
Is it necessary to call Looper.prepare() from within the UI thread?
If I want to implement a Handler object from within my Activity's main thread, do I need to call Looper.prepare() beforehand, or do activities already have their own internal loopers? Does the same ...
0
votes
3answers
1k views
Create New Thread - Android
I'm trying to implement a looper so I can create a thread for sending GPS coordinates to a database. I'm new to Java and this is all really confusing, but maybe you can help. The following class ...
0
votes
2answers
628 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 ...



