AsyncTask类实例详解
asynctask也叫做“异步任务”,是一个抽象类
asynctask约定了在子线程中执行任务的抽象方法,开发者可以在自定义asynctask的实现类中重写该方法,
则asynctask在工作时会自动开启子线程执行相关代码
asynctask类的声明:
public abstract class asynctask<param,progress,result>
param 执行异步任务后,需要参数的数据类型
progress 执行异步任务过程中,标识进度的数据类型
result 执行异步任务后,需要返回的结果的数据类型
asynctask中的抽象方法: public abstract result doinbackground(params... params)
让asynctask开始工作:
public final asynctask<params,progress,result> execute(params...params)
该方法被调用后,会自动开启子线程并调用dninbackground()方法,该方法必须在ui线程中调用
案例:
布局:
<button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:layout_centerhorizontal="true" android:layout_margintop="104dp" android:onclick="doasynctask" android:text="开始" />
mainactivity:
public class mainactivity extends activity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); system.out.println("oncreate" + thread.currentthread().getid()); } public void doasynctask(view view){ new innerasynctask().execute(""); } private class innerasynctask extends asynctask<object, object, object>{ @override protected object doinbackground(object... params) { for(int i = 0; i < 30;i++){ system.out.println("innerasynctask" + thread.currentthread().getid()); try { thread.sleep(1000); } catch (interruptedexception e) { e.printstacktrace(); } } return null; } } }
asynctask更新ui
asynctask约定了任务执行完毕后的回调方法,该方法并不是抽象的,开发者可以选择性的实现。
protected void onpostexecute(result result)
该方法是运行在主线程的方法
实例:
布局:
<button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:layout_centerhorizontal="true" android:layout_margintop="104dp" android:onclick="doasynctask" android:text="开始" /> <imageview android:id="@+id/imageview1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/button1" android:layout_centerhorizontal="true" android:layout_margintop="22dp" android:src="@drawable/abs" />
mainactivity:
public class mainactivity extends activity { private imageview image; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); image = (imageview) findviewbyid(r.id.imageview1); // system.out.println("oncreate" + thread.currentthread().getid()); } public void doasynctask(view view){ new innerasynctask().execute(""); } private class innerasynctask extends asynctask<string,integer, bitmap>{ @override protected bitmap doinbackground(string... params) { try { thread.sleep(3000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } return bitmapfactory.decoderesource(getresources(), r.drawable.abc); } @override protected void onpostexecute(bitmap result) { image.setimagebitmap(result); } } }
asynctask更新进度
asynctask约定了任务执行过程中,更新进度的回调方法,该方法并不是抽象的,开发者可以选择性地实现。
protected void onprogressupdate(progress... values)(该方法运行在主线程)
在任务执行过程中,可以调用publishprogress()方法提交进度,使得onprogressupdate()方法被回调
实例
布局:
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <textview android:id="@+id/tv_pb" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="100%" android:visibility="gone" android:textsize="16sp"/> <button android:id="@+id/btn_update" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:layout_centerhorizontal="true" android:layout_margintop="104dp" android:onclick="doasynctask" android:text="开始" /> <imageview android:id="@+id/iv_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/btn_update" android:layout_centerhorizontal="true" android:layout_margintop="22dp" android:src="@drawable/abs" /> <progressbar android:id="@+id/pb_progress" style="?android:attr/progressbarstylehorizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:max="100" android:visibility="gone" android:layout_alignright="@+id/btn_update" android:layout_margintop="32dp" /> </relativelayout>
loadimage:
public class loadimage extends asynctask<string, integer, object> { private context context; private imageview imageview; private bitmap image; private button button; private progressbar pg; private textview tv; public loadimage(context context, button button, imageview imageview, progressbar pg, textview tv) { this.context = context; this.imageview = imageview; this.button = button; this.pg = pg; this.tv = tv; } @override protected object doinbackground(string... params) { for (int i = 0; i <= 100; i++) { publishprogress(i); try { thread.sleep(50); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } } image = bitmapfactory.decoderesource(context.getresources(), r.drawable.abc); return null; } @override protected void onprogressupdate(integer... values) { // todo auto-generated method stub pg.setprogress(values[0]); tv.settext(values[0] + "%"); } @override protected void onpostexecute(object result) { imageview.setimagebitmap(image); button.setenabled(true); pg.setvisibility(view.gone); tv.setvisibility(view.gone); } }
mainactivity:
public class mainactivity extends activity { private imageview image; private button button; private progressbar pg; private textview tv; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); image = (imageview) findviewbyid(r.id.iv_image); button = (button) findviewbyid(r.id.btn_update); pg = (progressbar) findviewbyid(r.id.pb_progress); tv = (textview) findviewbyid(r.id.tv_pb); } public void doasynctask(view view){ button.setenabled(false); pg.setvisibility(view.visible); tv.setvisibility(view.visible); new loadimage(this,button,image,pg,tv).execute(""); } }
asynctask是一个综合了任务的执行、进度更新、结果提交的类,使用asynctask
可以集中的编写某个异步任务的全部代码,而不必关心线程间的通信问题,降低了
编码出错几率,并有效的提高了代码的可阅读性、可维护性等。
小案例之异步加载图片
使用到的技术: canvas(画布)、paint(画笔)
canvas(画布):用来决定画布的基础属性,执行绘制
paint(画笔):设置颜色、设置字体、其他的设置
同一次绘图过程中,可能需要多个画笔对象,或多次调整画笔的属性
使用canvas:
public canvas()
public canvas(bitmap bitmap)
public void drawrect(float left,float top,float right,float bottom,paint paint)
public void drawbitmap(bitmap bitmap,float left,float top,paint paint)
public void drawtext(string text,float x,float y,paint paint)
使用paint:
public paint()
public native void setcolr(int color)
public native void setantialias(boolean aa)
public native void settextsize(float textsize)
public void settextalign(align align)
public xfermode setxfermode(xfermode xfermode)
总结
以上就是本文关于asynctask类实例详解的全部内容,希望对大家有所帮助。欢迎参阅本站:android开发实现文件关联方法介绍、android分包multidex策略详解等,有什么问题可以随时留言,欢迎大家交流讨论。