class DoLogin extends AsyncTask<String, Integer, String> {// 继承AsyncTask
@Override
protected String doInBackground(String... params) {// 处理后台执行的任务,在后台线程执行
ServerAnalyze.log("消息", "登陆", "手动登陆函数开始启动.");
EditText etStuId = (EditText) findViewById(R.id.tbStudentID);
EditText etPwd = (EditText) findViewById(R.id.tbPassword);
global.setStudentID(etStuId.getText().toString());
String Password = etPwd.getText().toString();
global.setImei(((TelephonyManager) getSystemService(TELEPHONY_SERVICE))
.getDeviceId());
Log.i("loginclick", "bg0");
global.giitServiceInterface.SendBroadCast_Login(global.getStudentID(), Password, global.getImei());
Log.i("loginclick", "bg1");
publishProgress(0);
Log.i("loginclick", "bg2");
return "";
}
protected void onProgressUpdate(Integer... progress) {// 在调用publishProgress之后被调用,在ui线程执行
Log.i("loginclick", "update");
}
@Override
protected void onPostExecute(String result) {// 后台任务执行完之后被调用,在ui线程执行
// progressDialog.dismiss();
Log.i("loginclick", "finish");
}
@Override
protected void onPreExecute() {// 在doInBackground(Params...)之前被调用,在ui线程执行
Button btnloginButton = (Button) findViewById(R.id.btnlogin);
btnloginButton.setText("正在登陆中,请稍候...");
btnloginButton.setBackgroundColor(getResources().getColor(
R.color.huise));
}
protected void onCancelled() {// 在ui线程执行
}
}
09-22 13:13:09.753: I/loginclick(1751): bg0
09-22 13:13:09.763: I/loginclick(1751): bg1
09-22 13:13:09.763: I/loginclick(1751): bg2
09-22 13:13:09.773: I/Giit Service(1751): Start
09-22 13:13:24.824: I/loginclick(1751): update
09-22 13:13:24.824: I/loginclick(1751): finish
09-22 13:13:24.834: I/[GiitParamClass-Action](1751): 1
09-22 13:13:24.844: I/[GiitParamClass-BooleanResult](1751): false
09-22 13:13:24.844: I/[GiitParamClass-intResult](1751): 0
这样的节目:
我有个问题。
为什么 bg0,bg1,b2 已被记录,但 onProgressUpdate 和 onPostExecute 需要服务回调然后它们运行。
09-22 13:13:09 服务开始
但仍然是 09-22 13:13:24.824 广播回调然后 onProgressUpdate 和 onPostExecute 开始运行。
我想知道,为什么会这样。
我尝试搜索,但我不知道如何写一个好的关键字。所以我没有找到anwser。
真诚的。谢谢。