asyncthread をキャンセルする必要があります。私のアプリケーションでは、いくつかの重い計算を行っています。ユーザーが計算をキャンセルできるようにしたいと考えています (その後、再試行します)。フォーラムで、タスクの実行を停止することはできず、DoinBackground コード内でタスクが isCancelled=true かどうかを確認する必要があることを読みました。しかし、それは私にはうまくいきません。
タスク自体はうまく機能しており、そのままにしておくと正しいデータが出力されます。
私のアプリでは、最初に関数 naredi_pdf_start(view) を呼び出します。タスクの実行中に close_pdf1(view) を呼び出すと、エラーが発生します。 - null ポインター例外)。task.cancel(true) メソッドの使用方法が本当にわかりません(私の場合: start_pdf.cancel(true)))。
これが私のコードです:
String progress_pdf;
naredi_pdf start_pdf;
public void naredi_pdf_start(View view) {
start_pdf=new naredi_pdf();
start_pdf.execute();
}
public void close_pdf1(View view) {
if(start_pdf!=null) {
Log.v("not null","not null");
start_pdf.cancel(true);
setContentView(R.layout.other_view); //This is where
//I don't have TextView pdf_text1
}
}
private class naredi_pdf extends AsyncTask<Void, String, Void> {
protected Void doInBackground( Void... ignoredParams ) {
progress_pdf="Calculating Statistical Data";
//A LOT OF CODING
for(int i = 0; i < 1; i++) {
if(isCancelled()) {
break;
}
else {
publishProgress("Calculating team statistics");
}
}
//MORE OF CODING
for (int i = 0; i < 1; i++) {
if (isCancelled()) {
break;
}
else {
publishProgress("Calculating player's BIO");
}
}
//MORE OF CODING
for (int i = 0; i < 1; i++) {
if (isCancelled()) {
break;
}
else {
publishProgress("Calculating player's individual performance");
}
}
return null;
}
protected void onPostExecute( Void array ) {
//saving to database
}
protected void onProgressUpdate(String... values) {
progress_pdf=values[0]+"\n"+progress_pdf;
if (isCancelled()) {
}
else {
TextView pdf_text1 = (TextView) findViewById (R.id.pdf_text1);
pdf_text1.setText(progress_pdf);
// dialog(view);
}
}
}