0

単一項目 (読み取り専用) の詳細アクティビティのデータを読み込む最適な方法はどれですか? LoaderManager または直接 AsyncTask を使用する必要がありますか?

4

1 に答える 1

3

最良の結果を得るには、非同期タスクを使用します。

Public class example extends AsyncTask<Void,Void,Void>
  {
        private ProgressDialog dialog;

        public example(Context context){
              dialog = new ProgressDialog(context);
        }

        @Override
        protected void onPreExecute() {
            dialog.setTitle("Demo");
            dialog.setMessage("Please Wait..");
            dialog.show();
        }

        @Override
        protected Void doInBackground(Void... arg0) {
            // TODO Auto-generated method stub

            return null;
        }

        @SuppressLint("NewApi")
        @Override
        protected void onPostExecute(Void result) {
            super.onPostExecute(result);
            dialog.dismiss();
        }
  }
于 2012-09-25T12:32:12.537 に答える