class AddStudent extends AsyncTask<String, Void, ResultData> {
private ProgressDialog pDialog;
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(AddStudentActivity.this);
pDialog.setMessage("Adding Product..");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}
private Context context;
//CHANGE HERE....ADD PARAMATER
TextView tv_msg;
public AddStudent(Context context, TextView tv_msg) {
this.context = context;
this.tv_msg = tv_msg;
}
我在(AddStudentActivity.this);
的AsyncTask onPreExecute新progressdialog
誤差的誤差= com.blablablabla.AddStudentActivity不是一個封閉類。
什麼問題?
我該如何解決這個問題?
不能使用還沒有被創建活動的背景下.. – akash93