单击回收器视图时如何设置进度条
how to set progress bar when recycler view is clicked
我有一个从 json 获取数据并将其显示在回收站视图中的应用程序
当单击每个回收站视图时,它会打开一个新的 activity 以显示完整内容。我只想知道如何在第二个 activity 显示感谢之前显示进度对话框。
这是我的代码
public CustomViewHolder(View view, Context ctx, ArrayList<FeedItem> feeditem) {
super(view);
view.setOnClickListener(this);
this.ctx = ctx;
this.feeditem = feeditem;
this.imageView = (ImageView) view.findViewById(R.id.thumbnail);
this.textView2 = (TextView) view.findViewById(R.id.date);
this.textView3 = (TextView) view.findViewById(R.id.excerpt);
this.categories = (TextView) view.findViewById(R.id.categories);
this.textView = (TextView) view.findViewById(R.id.title);
}
@Override
public void onClick(View v) {
int position = getAdapterPosition();
FeedItem feeditem = this.feeditem.get(position);
Intent intent = new Intent(this.ctx, ScrollingActivity.class);
intent.putExtra("excerpt",feeditem.getExcerpt());
intent.putExtra("content",feeditem.getContent());
intent.putExtra("title",feeditem.getTitle());
Html.fromHtml(String.valueOf(intent.putExtra("content",feeditem.getContent()))).toString();
intent.putExtra("thumbnail",feeditem.getAttachmentUrl());
this.ctx.startActivity(intent);
}
你必须在第二个 activity 中处理它。在那里,您应该在后台线程中完成所有数据加载或繁重的处理工作,并在您拥有数据或处理完成时更新 UI。
AsyncTask 就是为这个目的而设计的
public class LoadDataTask extends AsyncTask<Void, Void, Void> {
public LoadDataTask(ProgressDialog progress) {
this.progress = progress;
}
public void onPreExecute() {
progress.show();
}
public void doInBackground(Void... unused) {
... load your image here ...
}
public void onPostExecute(Void unused) {
progress.dismiss();
}
}
onPreExecute()
和 onPostExecute()
运行 在 UI 线程上。所以你可以在这里更新你的UI,比如显示图片。
你的第二个 activity 现在应该是这样的:
ProgressDialog progress = new ProgressDialog(this);
progress.setMessage("Loading...");
new LoadDataTask(progress).execute();
如需进一步帮助,请查看以下内容:
How to display progress dialog before starting an activity in Android?
我有一个从 json 获取数据并将其显示在回收站视图中的应用程序 当单击每个回收站视图时,它会打开一个新的 activity 以显示完整内容。我只想知道如何在第二个 activity 显示感谢之前显示进度对话框。 这是我的代码
public CustomViewHolder(View view, Context ctx, ArrayList<FeedItem> feeditem) {
super(view);
view.setOnClickListener(this);
this.ctx = ctx;
this.feeditem = feeditem;
this.imageView = (ImageView) view.findViewById(R.id.thumbnail);
this.textView2 = (TextView) view.findViewById(R.id.date);
this.textView3 = (TextView) view.findViewById(R.id.excerpt);
this.categories = (TextView) view.findViewById(R.id.categories);
this.textView = (TextView) view.findViewById(R.id.title);
}
@Override
public void onClick(View v) {
int position = getAdapterPosition();
FeedItem feeditem = this.feeditem.get(position);
Intent intent = new Intent(this.ctx, ScrollingActivity.class);
intent.putExtra("excerpt",feeditem.getExcerpt());
intent.putExtra("content",feeditem.getContent());
intent.putExtra("title",feeditem.getTitle());
Html.fromHtml(String.valueOf(intent.putExtra("content",feeditem.getContent()))).toString();
intent.putExtra("thumbnail",feeditem.getAttachmentUrl());
this.ctx.startActivity(intent);
}
你必须在第二个 activity 中处理它。在那里,您应该在后台线程中完成所有数据加载或繁重的处理工作,并在您拥有数据或处理完成时更新 UI。
AsyncTask 就是为这个目的而设计的
public class LoadDataTask extends AsyncTask<Void, Void, Void> {
public LoadDataTask(ProgressDialog progress) {
this.progress = progress;
}
public void onPreExecute() {
progress.show();
}
public void doInBackground(Void... unused) {
... load your image here ...
}
public void onPostExecute(Void unused) {
progress.dismiss();
}
}
onPreExecute()
和 onPostExecute()
运行 在 UI 线程上。所以你可以在这里更新你的UI,比如显示图片。
你的第二个 activity 现在应该是这样的:
ProgressDialog progress = new ProgressDialog(this);
progress.setMessage("Loading...");
new LoadDataTask(progress).execute();
如需进一步帮助,请查看以下内容:
How to display progress dialog before starting an activity in Android?