Simple usage of Android Asynctask

Source: Internet
Author: User
public class Weatherasynctask extends Asynctask<string, Integer, string> {public TextView t1=null;public Weatherasynctask (TextView t) {t1=t;} @Overrideprotected string Doinbackground (String ... params) {//TODO auto-generated method Stubreturn params[0];} @Overrideprotected void OnPostExecute (String result) {//TODO auto-generated method Stubsuper.onpostexecute (Result); T1.settext (result);}}

At the beginning there are three parameters, the first parameter is passed in parameters, such as URLs, etc., the second is generally progress can be saved, the third is the return value.

The simplest is to override these two methods, the first parameter of the first method is the passed in value, the first method returns the value is the second method to substitute the result.

Simple usage of Android Asynctask

Related Article

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.