This has been really confusing me of late. I have a thread which I start, and it keeps running until I kill it - by setting it's while variable to false.
This all works ok, but I lose contact with the thread on orientation change so I can't stop it. I've written this to try and clarify the problem:
public class FTTest extends Activity {
boolean isPlaying = false;
Player player = new Player();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fttest);
}
public void play(View v) {
if (!isPlaying) {
Log.d("Play Button", "Start Pressed");
player.start();
isPlaying = true;
} else {
Log.d("Play Button", "Stop Pressed");
player.going=false;
isPlaying = false;
}
}
}
The player is just this:
public class Player extends Thread{
int i;
public boolean going=true;
public void run(){
while(going){
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
i++;
Log.d("Thread", "Running "+i+" times");
}
}
}
I've been reading about using fragments to solve this - but I just can't get my head around how to use them in this context. Is there something simple I'm missing?
Thanks for your help,
Mike