已采纳回答 / orangesweet
cancel方法并不会立即停止,分很多情况,这个方法的文档里有写。execute方法好像是会有等待的情况,你用executeOnExecutor方法试试
2015-06-10
已采纳回答 / orangesweet
你的Thread实现中好像没有调用addbitmaptocache而asynctask你试试用executeOnExecutor();第一个参数你提前创建一个线程池对象,调用的时候传入。
2015-06-10
最新回答 / orangesweet
1,什么时候检查,这个就看你自己控制了,就跟结束一个线程一样,需要自己判断什么时候去检查flag。在你认为恰当的时机。你可以每隔一行检查一次。。。2,onCancelled(Object)是AsyncTask的回调,带on的么。Calling this method will result in onCancelled(Object) being invoked on the UI thread after doInBackground(Object[]) returns.调用cancel方法会导致onC...
2015-06-10