初めて AsyncTask を作成しようとしていますが、うまくいきません。
私の AsyncTask は、サーバーから情報を取得し、新しいレイアウトをメイン レイアウトに追加してこの情報を表示する必要があります。
すべてが多かれ少なかれ明確に見えますが、「MainActivity はエンクロージング クラスではありません」というエラー メッセージが気になります。
他の誰もこの問題を抱えているようには見えないので、私は非常に明白な何かを見逃していると思います.それが何であるかはわかりません.
また、コンテキストを取得するために正しい方法を使用したかどうかもわかりません。アプリケーションがコンパイルされないため、テストできません。
あなたの助けに感謝します。
これが私のコードです:
public class BackgroundWorker extends AsyncTask<Context, String, ArrayList<Card>> {
Context ApplicationContext;
@Override
protected ArrayList<Card> doInBackground(Context... contexts) {
this.ApplicationContext = contexts[0];//Is it this right way to get the context?
SomeClass someClass = new SomeClass();
return someClass.getCards();
}
/**
* Updates the GUI before the operation started
*/
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
/**
* Updates the GUI after operation has been completed
*/
protected void onPostExecute(ArrayList<Card> cards) {
super.onPostExecute(cards);
int counter = 0;
// Amount of "cards" can be different each time
for (Card card : cards) {
//Create new view
LayoutInflater inflater = (LayoutInflater) ApplicationContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
ViewSwitcher view = (ViewSwitcher)inflater.inflate(R.layout.card_layout, null);
ImageButton imageButton = (ImageButton)view.findViewById(R.id.card_button_edit_nickname);
/**
* A lot of irrelevant operations here
*/
// I'm getting the error message below
LinearLayout insertPoint = (LinearLayout)MainActivity.this.findViewById(R.id.main);
insertPoint.addView(view, counter++, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));
}
}
}