单击回收器视图时如何设置进度条

时间:2017-01-23 13:57:26

标签: android json android-recyclerview progressdialog

我有一个应用程序从json获取数据并将其显示在回收器视图上 当点击每个回收者视图时,它会打开一个新活动以显示完整内容。所有我想知道的是如何显示进度对话框befrore第二个活动显示谢谢。 这是我的代码

        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);


    }

1 个答案:

答案 0 :(得分:0)

你必须在第二次活动中处理它。在那里,您应该在后台线程中完成所有数据加载或繁重处理工作,并在数据或处理完成时更新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();
  }
}
在UI线程上运行

onPreExecute()onPostExecute()。因此,您可以在此处更新您的用户界面,例如显示图片。

你的第二项活动现在应该是这样的:

ProgressDialog progress = new ProgressDialog(this);
progress.setMessage("Loading...");
new LoadDataTask(progress).execute();

如需进一步帮助,请查看以下内容: