10

初めて 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));
        }
    }
}
4

2 に答える 2

20

Eclipse はおそらく正しいです。独自のファイル ( ) 内にある別のクラスから、独自のファイルMainActivity内にあるクラス ( )にアクセスしようとしています。それを行う方法はありません-あるクラスが他のインスタンスについて魔法のように知ることになっているのはどうですか? できること:BackgroundWorker

  • AsyncTask を移動して、内部クラスにしますMainActivity
  • あなたのアクティビティを(そのコンストラクターを介して)AsyncTaskに渡し、次にactivityVariable.findViewById();(私はmActivity以下の例で使用しています)をApplicationContext使用してアクセスします、そうするAMainActivityApplicationContext.findViewById();

コンストラクターの例を使用します。

public class BackgroundWorker extends AsyncTask<Context, String, ArrayList<Card>>
{
    Context ApplicationContext;
    Activity mActivity;

   public BackgroundWorker (Activity activity)
   {
     super();
     mActivity = activity;
   }

//rest of code...

はどうかと言うと

コンテキストを取得するために正しい方法を使用したかどうかはわかりません

それは結構です。

于 2013-01-02T03:06:22.153 に答える
0

上記の例は内部クラスです。ここではスタンドアロン クラスを示します...

public class DownloadFileFromURL extends AsyncTask<String, String, String> {
ProgressDialog pd;
String pathFolder = "";
String pathFile = "";
Context ApplicationContext;
Activity mActivity;

public DownloadFileFromURL (Activity activity)
{
    super();
    mActivity = activity;
}
@Override
protected void onPreExecute() {
    super.onPreExecute();
    pd = new ProgressDialog(mActivity);
    pd.setTitle("Processing...");
    pd.setMessage("Please wait.");
    pd.setMax(100);
    pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    pd.setCancelable(true);
    pd.show();
}

@Override
protected String doInBackground(String... f_url) {
    int count;

    try {
        pathFolder = Environment.getExternalStorageDirectory() + "/YourAppDataFolder";
        pathFile = pathFolder + "/yourappname.apk";
        File futureStudioIconFile = new File(pathFolder);
        if(!futureStudioIconFile.exists()){
            futureStudioIconFile.mkdirs();
        }

        URL url = new URL(f_url[0]);
        URLConnection connection = url.openConnection();
        connection.connect();

        // this will be useful so that you can show a tipical 0-100%
        // progress bar
        int lengthOfFile = connection.getContentLength();

        // download the file
        InputStream input = new BufferedInputStream(url.openStream());
        FileOutputStream output = new FileOutputStream(pathFile);

        byte data[] = new byte[1024]; //anybody know what 1024 means ?
        long total = 0;
        while ((count = input.read(data)) != -1) {
            total += count;
            // publishing the progress....
            // After this onProgressUpdate will be called
            publishProgress("" + (int) ((total * 100) / lengthOfFile));

            // writing data to file
            output.write(data, 0, count);
        }

        // flushing output
        output.flush();

        // closing streams
        output.close();
        input.close();


    } catch (Exception e) {
        Log.e("Error: ", e.getMessage());
    }

    return pathFile;
}

protected void onProgressUpdate(String... progress) {
    // setting progress percentage
    pd.setProgress(Integer.parseInt(progress[0]));
}

@Override
protected void onPostExecute(String file_url) {
    if (pd!=null) {
        pd.dismiss();
    }
    StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
    StrictMode.setVmPolicy(builder.build());
    Intent i = new Intent(Intent.ACTION_VIEW);

    i.setDataAndType(Uri.fromFile(new File(file_url)), "application/vnd.android.package-archive" );
    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    getApplicationContext().startActivity(i);
}

}

于 2019-07-14T15:23:55.000 に答える