java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
在解决这个问题时,觉得以下比较有用为了正确的使用AsyncTask类,以下是几条必须遵守的准则:1)Task的实例必须在UIthread中创建2)execute方法必须在UIthread中调用3)不要手动的调用onPreExecute(),onPostExecute(Result),doInBackground(Params...),onProgressUpdate(Progress...)这几个