我想在数据加载但出现此异常时显示旋转刷新。我正在使用异步任务进行处理。请指导如何正确添加进度对话框以提供旋转效果。任何帮助将不胜感激。
我的小部件提供程序 class-onUpdate() 方法
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
int[] appWidgetIds) {
//---
mProgressDialog = new ProgressDialog(context);
mProgressDialog.setIndeterminate(false);
mProgressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
try {
fetchTask.execute().get();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ExecutionException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
mContext = context;
}
protected void onPreExecute(){
mProgressDialog.show();
//updateViews.setViewVisibility(R.id.refresh, View.GONE);
//updateViews.setViewVisibility(R.id.progress, View.VISIBLE);
}
protected Store doInBackground(URL... arg0) {
//my stuff
}
protected void onPostExecute(Store storeObj) {
mProgressDialog.dismiss();
//updateViews.setViewVisibility(R.id.progress, View.GONE);
//updateViews.setViewVisibility(R.id.refresh, View.VISIBLE);
pushWidgetUpdate(mContext,updateViews);
}
我的 xml
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<ImageButton
android:id="@+id/refresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_marginLeft="25dp"
android:layout_marginRight="20dp"
android:background="#0079C1"
android:src="@drawable/navigation_refresh"
android:visibility="visible" />
<ProgressBar
android:id="@+id/progress"
android:indeterminate="true"
style="?android:attr/progressBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:visibility="gone" />
</RelativeLayout>