Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

android - Stop Thread onPause

I want to stop a Thread when the User leaves the Activity. It sounds so simple but no function, which i tried, works.

I start the Activity with the Code

lovi = new Intent(getApplicationContext(), listoverview.class);
lovi.putExtra("reloadAll", true);
startActivity(lovi);

In the onCreate of the listoverview i start the Thread with the Code

rlMF.start();

And rlMF looks like this:

public Thread rlMF = new Thread(new Runnable() {
    public void run() {
        reloadMissingFiles();
    }
});

I tried in the onPause to use rlMF.stop(), .interrupt(), .suspend. Nothing stops it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You have to add some flag to to stop it. Stopping thread by other means might have dire consequences, like resource leaks.

For example:

volatile boolean activityStopped = false;

When creating runnable:

public Thread rlMF = new Thread(new Runnable() { 

    public void run() {
        while (!activityStopped) {
        // reloadMissingFiles() should check the flag in reality
            reloadMissingFiles(); 
        }
    }
});

In onPause():

protected void onPause(){
    super.onPause();
    activityStopped = true;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...