开发者

Intentionally force android to wait AND load something in background

I want to force android to wait AND continue processing something at the same time. I have seen the Thread wait function, but that just makes things hang for a while not actually letting the app do anything.开发者_Python百科 Subsequent processes are simply queued up waiting their turn.

I want to force the timing of a process. This is kind of a combination between having a thread with a wait AND an asynctask

insight appreciated


public class yourActivity extends Activity{
final WebView yourWebview; //this is the webview
Context mContext = this;

public void onCreate(Bundle B){
setContentView(R.id.somethingtoshow);//this will be shown while webview working

Runnable yourRun = new Runnable(){
public void run(){
yourWebview = new WebView(mContext);
//do whatever you want with it
//loadUrl and whatever you want

//when your done
runOnUiThread(new Runnable(){
public void run(){
setContentView(yourWebView);
}
});

}
};
Thread T= new Thread(yourRun);
T.start();
}

}


'Waiting' means to put the thread in a suspended state - do you mean having the app simply do nothing until the process is completed?

You never want to make the main event thread hang or wait, that will make the user think the app is frozen. To do what you are wanting, you will probably spawn an async thread that loads the page from the main activity. The activity will continue to display whatever you had it doing last, and will not hang up or freeze while the async is going in the background. However, the user will still be able to press buttons, and might mess you up.

So to get the app to appear unfrozen and allow a process to occur in the background, you will want to enter into some loading screen or limit the user's options on the main layout. This will allow activity to continue occurring but allow the user a smooth experience.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜