研究了 线程超时方面的东西
基本思路
触发事件之后 同时开启2个线程
1-timer线程
2-执行数据访问的thread线程
3-Runnable线程 此线程用来更新UI
timer线程设置CHECK_TIME秒之后执行,也就是访问的最大时间 超过此时间就视为超时
那么我们应该考虑的就是超时 和 不超时的处理
假如超时--
也就是说 timer已经执行了,那我们就应该把 thread线程停止掉 安全起见我用个boolean值进行限制。然后再thread线程内判断此boolean值 是否继续下面的操作。
假如正常--
当thread线程访问正常速度在5秒之内,也就是说thread赶在 timer之前执行完毕了,那就按照我们正常的思路来写程序,当然别忘了把timer停止掉
public void onScanReady(final String jan) { isTimeOut = false;// Log.d("#", "onScanReady > "); showWaitDialogNoTitle(getString(R.string.MSG_I_0004)); final Runnable mUpdateResults = new Runnable() { public void run() { if (isTimeOut) {//超时操作 } else { initListView(jan); } } }; // ////////// if (thread != null) { thread.stop(); } timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() {// Log.d("#", "timer out 1> "); // 若5秒之后执行了这个 说明已经超时 在访问数据库的线程里面关闭此timer isTimeOut = true; if (thread != null) {//停掉数据访问线程 thread.stop(); } uiHandler.post(mUpdateResults);//更新UI// Log.d("#", "timer out 2> "); } }, CHECK_TIME);// Log.d("#", "start thread > "); thread = new Thread(new Runnable() { @Override public void run() { Looper.prepare(); try { list = countListBll.getAllByJan(handler, jan);//数据访问操作 if (!isTimeOut) { uiHandler.post(mUpdateResults); // call updateUI thread timer.cancel();// Log.d("#", " success > "); } } catch (Exception e) { e.printStackTrace(); } } }); thread.start(); }