データベースからデータを取得したい。だから私は使用することにしましProgressDialog
た。
バックグラウンドでリストビューに追加されるレコードの数をユーザーが確認できるようにしたいと考えています。私を助けてください、
前もって感謝します..
データベースからデータを取得したい。だから私は使用することにしましProgressDialog
た。
バックグラウンドでリストビューに追加されるレコードの数をユーザーが確認できるようにしたいと考えています。私を助けてください、
前もって感謝します..
ProgressDialog を表示するには、以下のように AsyncTask を使用します
private class FetchRSSFeeds extends AsyncTask<String, Void, Boolean> {
private ProgressDialog dialog = new ProgressDialog(HomeActivity.this);
/** progress dialog to show user that the backup is processing. */
/** application context. */
protected void onPreExecute() {
this.dialog.setMessage("Please wait");
this.dialog.show();
}
protected Boolean doInBackground(final String... args) {
try {
/**
* Fetch the data
*/
Utilities.arrayRSS = objRSSFeed.FetchRSSFeeds(Constants.Feed_URL);
return true;
} catch (Exception e) {
Log.e("tag", "error", e);
return false;
}
}
@Override
protected void onPostExecute(final Boolean success) {
if (dialog.isShowing()) {
dialog.dismiss();
}
// Setting data to list adaptar
setListData();
txtTitle.setText(Utilities.RSSTitle);
}
}