Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
6k views

Updating UI with Runnable & postDelayed not working with timer app

I have looked at every discussion and thread I can find on getting this to work but it is not. I have a simple timer that updates a text view (mTimeTextField in the example below). The mUpdateTimeTask ...
3
votes
2answers
156 views

Why doesn't Handler trigger alert as expected?

I need my app to trigger an alert a specified amount of time after a user presses a button. The documentation makes it look like Handler is what I need, and usage appears to be brain dead. However, ...
3
votes
3answers
5k views

How to get an Android widget's size after layout is calculated?

I have a layout which specifies sizes of widgets in relative dimension, for example: <LinearLayout ... layout_height="fill_parent"> <ImageView ... layout_height="wrap_content" /> ...
2
votes
1answer
894 views

Self-updating every 10 seconds widget Handler.postDelayed problem

I'm trying to make work a self-updating functionality in an Android widget, something simple as changing two TextViews of it every 10 seconds. The ideal solution would be to make it similar to the ...
1
vote
2answers
38 views

KeyStroke delay for password text in windows phone 7

I am developing a windows phone 7 application. I have requirement where there is a password text box and when user starts typing the letters into the text box, each letter should appear as it is for ...
1
vote
1answer
86 views

Android delay / scheduling methods concern

I am developing a game for Android 2.1 My game is a card playing game. So, what I want is that after I have clicked on one of my cards and I throw it, I want the AI to play his card after 2 seconds. ...
1
vote
1answer
79 views

How to Pull the User String into timer.postDelayed

How do I pull the user string into the Handler timer.postDelayed? public class Quotes extends Activity implements OnClickListener { ProgressDialog dialog; private WebView webview; Handler timer; ...
1
vote
2answers
151 views

Incrementing progressbar during a delayed call

I have a delayed call which looks like this: handler.postDelayed(new Runnable() { public void run() { newDeviceBluetooth(); //increment progressbar each ...
1
vote
1answer
616 views

Cancel pause/wait on a postdelayed handler/runnable and still activate the paused code

Setup: I have a 4 stage activity that I use a postdelayed handler to pause with two more nested postdelays. Timeline: stage1 |CODE FIRES| stage2 |CODE FIRES| stage3 |CODE FIRES| stage4 ...
1
vote
1answer
303 views

Runnable is executing slower than expected

I'm using a runnable in my Android app to update a countdown timer, as shown in the code below. It appears to work but I noticed my timer takes a few seconds longer than expected. For example, if it's ...
1
vote
1answer
944 views

Delay SMS sending ANDROID

I'm currently trying to code an app to send mass SMS to 300+ numbers I have in my database. I'm facing issues with sending them all at one go my app will force close and I only managed to send like ...
1
vote
1answer
314 views

How to stop the launch of a thread done with postDelayed

I have a service tha launch a thread after 15 sec. This is a snippet of my code: Handler mHandler = new Handler(); OverclockThread ocThread = new OverclockThread(); ...
1
vote
1answer
538 views

MapView latitudeSpan / longtitudeSpan not working

I am trying to get the bounds of my mapview but I had the problem that the latitude is always set to 0 and longtitude is always set to 360*1E6. According to this link, that is because it will only ...
1
vote
2answers
2k views

Android - Question on postDelayed and Threads

I have a question about postDelayed. The android docs say that it adds the runnable to the queue and it runs in the UI thread. What does this mean? So, for example, the same thread I use to create ...
0
votes
3answers
26 views

Add delay during adding of view in android

I have a simple animation attached to dynamic textview that i am creating but what i want is to add delay while adding them. Please guide me how to do that. LinearLayout ll = ...
0
votes
2answers
62 views

Change ImageView for a few seconds and pause UI

Sorry, I keep on trying to adapt the tokens, but somehow I can't manage this one. I have the following code: timer.schedule(new TimerTask(){ runOnUiThread(new Runnable() { public void ...
0
votes
2answers
99 views

Handler().postDelayed() sending multiple intents when orientation changes

Ok I'm working on a splash screen that pauses for 1.5 seconds and works great, except for one thing. Once the timer is started in onCreate if the configuration (orientation) changes then the timer ...
0
votes
1answer
140 views

Handler - postDelayed executes twice

When I use Handler and its postDelayed method, the run() method executes twice. Below is part of my code. Handler deneme = new Handler(); deneme.postDelayed(new Runnable() { @Override ...
0
votes
1answer
75 views

How can I pass a variable into a postdelayed runnable?

I have created two classes implemented from runnable(). I then call them several times, with varying delay. The problem is, when I run the runnable later, it needs to know the value of a variable ...
0
votes
2answers
101 views

Best practice for delaying program execution in Java (Android)

I am making a quiz app for Android. The user has 30 seconds to answer as many questions as they can. I create a small gap in execution time between questions so the user can see if they got the ...
0
votes
1answer
367 views

Handler.removeCallbacks() doesn't remove callback - Why?

Given the following LogCat trace, which shows that Handler.removeCallbacks() is called (via MyListener.cancelTimeout()) clearly before myTask.run(): 08-12 17:29:13.990: ...
0
votes
3answers
278 views

Running a task at a specific time using postDelayed

I would like to start a task at a specific time. For that I use runnable and postDelayed method as follows: private Runnable mLaunchTask = new Runnable() { public void run() { ...
0
votes
4answers
768 views

How to execute a function every two seconds in Java on Android?

I'm trying to execute a chunk of Java code in my Android program every two seconds. My code currently looks like this: LinearLayout.postDelayed(new Runnable() { public void run() ...
0
votes
1answer
929 views

handler.postDelayed vs. AlarmManager vs

I have a minor problem in one of my apps. It uses a BroadCastReceiver to detect when a call finishes and then performs some minor housekeeping tasks. These have to be delayed for a few seconds, to ...
0
votes
1answer
112 views

sorting out different handlers android

all, i want to create multiple handlers that gets triggered based on users selection, but this handlers implement the same runnable method. the only difference is that they call different ...
0
votes
2answers
1k views

How to remove a runnable from a handler object added by postDelayed?

I have an "open" animation and am using Handler.postDelayed(Runnable, delay) to trigger a "close" animation after a short delay. However, during the time between open and close, there is possibly ...