我是 android 的新手 .. 正在尝试在 android 中实现线程。但是出现错误..我用谷歌搜索并得到答案“AsyncTask”,但我真的不知道如何实现
错误信息
java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
我的代码
final Thread thread = new Thread(){
@Override
public void run() {
try {
DatabaseHandler dbh = new DatabaseHandler(test.this);
result=dbh.Verify(1);
if(result != ""){
getData();
progress.dismiss();
}
else{
}
} catch (Exception e) {
e.printStackTrace();
}
}
};
thread.start();