| | |
| | | if (ExamPlatformData.getInstance().getExamType()>ExamPlatformData.EXAM_TYPE_ChangKAO){ |
| | | if (TextUtils.isEmpty(ExamPlatformData.getInstance().getRoadMapPath())){ |
| | | MyLog.i("开始考试后,远程服务缺少路考地图,但地图确实不存在无法发送给远程服务"); |
| | | CThreadPoolExecutor.runOnMainThread(() -> Toast.makeText(appContext, "缺少路考地图,请前往\"设置\"选择地图", Toast.LENGTH_SHORT).show()); |
| | | |
| | | return; |
| | | } |
| | | } |
| | | if (ExamPlatformData.getInstance().getExamType()==ExamPlatformData.EXAM_TYPE_ChangKAO){ |
| | | if (TextUtils.isEmpty(ExamPlatformData.getInstance().getMapPath())){ |
| | | MyLog.i("开始考试后,远程服务缺少chang考地图,但地图确实不存在无法发送给远程服务"); |
| | | CThreadPoolExecutor.runOnMainThread(new Runnable() { |
| | | @Override |
| | | public void run() { |
| | | Toast.makeText(appContext, "缺少场考地图,请前往\"设置\"选择地图", Toast.LENGTH_SHORT).show(); |
| | | } |
| | | }); |
| | | |
| | | return; |
| | | } |
| | | } |