Android-AsyncTask)

Source: Internet
Author: User

Android-AsyncTask)

The. xml Code is as follows:

 

The. java code is as follows:

 

 

Package org. lxh. demo; import android. app. activity; import android. app. alertDialog; import android. app. dialog; import android. content. dialogInterface; import android. OS. asyncTask; import android. OS. bundle; import android. view. view; import android. view. view. onClickListener; import android. view. view. onFocusChangeListener; import android. widget. button; import android. widget. editText; import android. widget. progressBar; import android. widget. textView; public class Hello extends Activity {private ProgressBar bar = null; private TextView info = null; public void onCreate (Bundle savedInstanceState) {super. onCreate (savedInstanceState); // life cycle method super. setContentView (R. layout. main); // set the layout manager to use this. bar = (ProgressBar) super. findViewById (R. id. bar); this.info = (TextView) super. findViewById (R.id.info); ChildUpdate child = new ChildUpdate (); // The child task object child.exe cute (100); // sets the sleep time} private class ChildUpdate extends AsyncTask
 
  
{// Override the following method @ Overrideprotected String doInBackground (Integer... params) {// process Background tasks for (int x = 0; x <100; x ++) {Hello. this. bar. setProgress (x); // progress bar setting this. publishProgress (x); // pass each update content try {Thread. sleep (params [0]);} catch (InterruptedException e) {e. printStackTrace () ;}} return execution completed !;} @ Overrideprotected void onPostExecute (String result) {// After the task is executed, execute Hello.this.info. setText (result) ;}@ Overrideprotected void onProgressUpdate (Integer... progress) {// The value Hello.this.info after each update. setText (current progress: + String. valueOf (progress [0]) ;}}
 


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.