The Runnable interface defines a single method, run, meant to contain the code executed in the thread.
4
votes
4answers
54 views
Getting a value/Returning something each time a thread executes its run
I have 2 threads running. One is a TimeStepThread, the other is a CarThread.
The CarThreadruns every 500ms. The TimeStepThreadruns at whatever interval I give it. Now, each 500ms, the CarThreadupdates ...
0
votes
1answer
28 views
Android Runnable not working on android 2.3?
I have the following code:
btn.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if ...
0
votes
1answer
68 views
Why are my if statements not working in this for loop?
Question:
I'm designing a small Android app that plays sounds (notes) when you press an imageButton that looks like a specific instrument, and you can play up to 10 notes across 6 imageButtons. It ...
0
votes
1answer
30 views
Android layout color change programatically
I have a class that is supposed to show a screen in white and fade through a lot a colors.
public class SecondActivity extends Activity implements Runnable {
protected PowerManager.WakeLock ...
0
votes
1answer
26 views
Execute two Runnables Android
I'd like to make two Runnables work for my Android App:
1) Runnable r1 for changing an ImageView:
Runnable r1 = new Runnable() {
@Override
public void run() {
...
0
votes
5answers
74 views
Thread Runnable - stop and resume
Hello i'm new in Android(Java), and i have a problem with the use of thread
I define e new Thread timed (every 5 seconds) inside a class of my android Project.
The "mContinueThread" variable is used ...
0
votes
1answer
39 views
Runnable and postdelayed in android 4.0 (GraphView Library for real time)
Im using the GraphView Library to visualize real time graphs. The library example works fine in 2.X android devices, however it doesnt work properly in 4.X devices. The graph only get refreshed when ...
0
votes
2answers
42 views
Application only works in Eclipse
I'm doing a college project using Java and Eclipse. The app works perfectly in Eclipse, but when I export it as Runnable Java File it doesn't work. No any error is shown, and nothing is opened.
Do ...
0
votes
1answer
39 views
seekbar not working when runnable and handler.postdelayed() are added in android apps
I'm not sure why I get error on the handler. The codes work until when I add in the handler to control the seekbar, it will prompt error.
package com.voice.recording.v3;
import ...
0
votes
1answer
41 views
Odd behavior with Runnable and ExecutorService
I'm getting some really weird behavior with multithreading. I have two classes: DipoleTester and Dipole.
DipoleTester attempts to create several Dipole objects, and then run them asynchronously. The ...
1
vote
0answers
46 views
Rotating an image, angle by angle, and waiting for refresh
I'm trying to rotate an image a full rotation, a small angle-increment at a time.
Each proceeding rotation should begin after the previous rotation has been displayed.
How fast the rotation ...
0
votes
2answers
18 views
Creating a runnable that uses parameters
I am doing some Android programming and I want to create a runnable that accepts intents. I understand that the general way of creating a runnable is:
Runnable R1 = new Runnable(){
Code
};
What I ...
1
vote
2answers
51 views
Stopping a Timer Task from within a Runnable thread when shutdown
I have a TimerTask that gets started as the first thing in my run() method of my Runnable class. I want to make sure that it gets stopped when the runnable is shutdown.
The runnable is started via ...
0
votes
1answer
30 views
HttpClient queries on main thread keeps crashing when in Runnable
I've expierenced this code runs smoothly on Android 2.2. But on Android 4.0 it crashes.
I am assuming that, It's caused by HttpClient. So I moved the code into a Runnable, but it keeps crashing.
new ...
-1
votes
1answer
26 views
Warranty of storing variable value before next command in java
I am curious if immediately after value assign command like this:
a = 5;
there is a warranty that the new value has been stored into variable? And if this is different for primitive and other data ...
1
vote
1answer
49 views
Do threads ever commit suicide or stop running
When will this thread stop running and stop existing? Will it stop running immediately after printing the number 10? Is it available for garbage collection immediately after printing 10? Or must I ...
1
vote
1answer
58 views
have method return false if a block of code is taking to long
Having trouble with threads and timers. I need this method to execute some code but if the code takes to long the method should return false. Here is what I am doing:
public boolean ...
0
votes
0answers
29 views
make a runnable with an extern class
Hello I need to make a runnable thread under android to increase Stack size, and avoid Stackoverflow.
This code returns null pointer exception with theBlobDetection.computeBlobs(img.pixels); (which ...
0
votes
5answers
31 views
Run the method during prescribed number of minutes
There is a class Algorithm that has a method runAlgorithm. Currently it performs some predefined number of iterations, e.g. 100 iterations, after what it stops. This method is called from the class ...
0
votes
1answer
19 views
asynctask progress dialog part of main UI?
I have an asynctask thread running which has a progress dialog shown. While it running, i also have another runnable thread which updates the UI. However it seems that updating the UI seems to lock ...
-1
votes
2answers
51 views
java singleton network implementing runnable
I am programming a Network singleton class and it needs to run in a thread, so far no problem, however I cannot get it work sadly.
Network class:
public class Network extends Thread {
...
1
vote
2answers
77 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 ...
1
vote
1answer
22 views
How can I convert WatchService into a Runnable?
I have a watch service that monitors a directory for ENTRY_DELETE,ENTRY_CREATE and ENTRY_MODIFY events and performs logic based upon the event.
I need the service to watch the directory for all ...
1
vote
2answers
47 views
ThreadFactory and newThread(Runnable r) how to access to the attributes of r if it is a Thread?
For my thesis I'm working on a Discrete Event System Simulator. The simulation consists in a set of SimulatorThread extends Thread whose action consist in scheduling Events to the Simulator. Each ...
0
votes
1answer
56 views
android calling runnable object multiple times
I'm trying to call my function multiple times, which contains runnable object.
Can anybody tell me What I'm doing wrong ?
handler = new Handler();
sButton.setOnClickListener(new ...
2
votes
0answers
47 views
my java swing form will not launch
I had this form launching previously using this code but after several edits to the form it will no longer launch. Any suggestions?
public static void main(String args[]) {
try {
for ...
3
votes
3answers
105 views
How do I make concurrently running threads?
I want to have two separate threads running two different instances of different classes and I want them to execute the run command at the same time.
I've made a practice class to demonstrate the ...
0
votes
2answers
48 views
Schedule regular task without extending TimerTask?
How can I run instances of this class repeatedly in separate threads and given intervals?
(As you have noticed I am using Java 2 EE).
public class Gate extends AbsDBObject<Gate> implements ...
0
votes
0answers
47 views
In android How to make the service runnable thread to wait for the activity to get finished
From service which is running indefinitely at the background, there i have created a runnable thread for network operation and trying to start the activity from the service, The activity starts and ...
1
vote
2answers
33 views
Swing Runnable with parameters
I would like to run new Swing thread and pass a parameter into them.
Something like this:
String str;
SwingUtilities.invokeLater(new Runnable() {
public void run() {
Play game = new ...
1
vote
1answer
52 views
Runnable or Executor Service
Which is easier and more suitable to use for running things in another thread, notably so that the program waits for the result but doesn't lock up an ui.
There may be a method that is better than ...
0
votes
4answers
57 views
My async task does not work correctly, does not call execute
On my button i have the following code:
Log.i(TAG, "!isFirstVideo: " + isFirstVideo);
ConcatenateVideos concatenateVideos = new ConcatenateVideos();
concatenateVideos.setUris(firstVideoUri, ...
1
vote
1answer
50 views
Android onPause thread freeze application
I want to make stopwatch. And i create stopwatch class like this. And when i call onPause in another Activity its freeze application.
public class StopWatch implements Runnable {
private Object ...
0
votes
1answer
80 views
How can I run multiple animations at the same time?
I'm working on a game where objects are dragged and dropped around the screen via touch. I'm doing this using a SurfaceView.
Sometimes I need to make an animation to move an object while the user is ...
0
votes
4answers
99 views
java - how to kill a Process if it exceeds an alloted time
I am wondering what the best way is to detect/kill a process if it exceeds a predefined time. I know an old way was to use the watchdog/timeoutobserver class from the ant package. But this is ...
0
votes
1answer
34 views
Android: run thread for an amount of time
In my app I'm making calls to an API to fetch some JSON.
Sometimes when people are on 2g network or their network drops the wait time becomes awkwardly long (especially when you show a dialog), thus I ...
0
votes
1answer
52 views
Android change visibility doesn't work
Simple card game setup creating rows and columns number of cards:
TableLayout tableCards = new TableLayout(this);
RelativeLayout.LayoutParams relLayParams = new ...
0
votes
1answer
80 views
unwanted multiple instances java
New question. After adjusting my program according to steps in my previous question:
How to access already running instance of a class without creating an actual object
I have came up new weird ...
1
vote
3answers
120 views
How to access already running instance of a class without creating an actual object
I have a problem with Java GUI. It is hard to explain but I will do my best. I have 2 GUI classes one is class I and other is class G. Class I is initiated from main method. In the class I there is a ...
1
vote
0answers
54 views
Variable not updated within handler.post's run method in Android
I created a new thread to handle my TCP management needs. I did this in order to keep the UI thread active while it's doing all sorts of socket magic. The problem I'm having is that the variable num ...
0
votes
0answers
65 views
Creating a runnable jar using NRJavaSerial for 64 bit serial communication
I have used NRJavaSerial(a fork to RxTx, http://code.google.com/p/nrjavaserial/) to succesfully create (with eclipse) a runnable jar application(for windows) that works on 32-bit systems. When I make ...
1
vote
2answers
101 views
Android Handler and Thread at start time not running?
I'm trying to create a handler at the start of my application so I can have two threads working 1 the UI and 2 my server, I'm doing this so the server will not stop the UI from lagging, and usefully ...
1
vote
1answer
112 views
Check if Android handler has callbacks
I have some code which sets a timer, but if a user sets the timer while it is in use I need to remove the runnable which runs the timer and start it again. But when no handler callback runnable ...
1
vote
2answers
43 views
Starting a runnable, my buttons do not respond anymore
I have the following button:
prStartBtn.setOnClickListener(new View.OnClickListener() {
// @Override
public void onClick(View v) {
if (prRecordInProcess == false) {
...
0
votes
0answers
26 views
Widget Update Via AlarmManager
Im in the middle of developing a widget to show the time and date. The way im updating is this:
final Handler mHandler = new Handler();
Runnable continuousRunnable = new Runnable() {
...
0
votes
1answer
74 views
How to resume it when i click resume button?
//Counter of time since app started ,a background task
private long mStartTime = 0L;
//Private long mPauseTime = 0L;
private TextView mTimerLabel;
//Handler to handle the message to the ...
0
votes
2answers
69 views
Toast in new Thread
I am trying to display a toast in a new thread. I researched into it and apparently I need to run toast in the UI thread. I need this new thread because Android doesn't want me running HTTPclient in ...
0
votes
1answer
110 views
What is a Runnable (Java) counterpart in Objective-C?
What is a good way to schedule tasks on the Main thread in Objective-C? Does any of the following ways create a new thread?
performSelector afterDelay
dispatch_after
0
votes
0answers
34 views
Is there a way to call an unimplemented abstract method from a supertype?
I am using a java library which requires certain objects to be used from the AWT Event Dispatch Thread. I would like to create an interface for a program using this library. So far I have this.
...
1
vote
1answer
87 views
repaint - painting and deleting immediatly
i have a project of ping pong(kind of) and it works but there is a problem in the run() function. if i draw the frame with functions i wrote to the panel(they work, i checked) it give a problem of ...





