单击回收者视图时如何设置进度栏 [英] how to set progress bar when recycler view is clicked

查看:111
本文介绍了单击回收者视图时如何设置进度栏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个应用程序,该应用程序从json获取数据并将其显示在回收站视图中 单击每个回收者视图时,它将打开一个新活动以显示完整内容.我只想知道在第二个活动表示感谢之前如何显示进度对话框. 这是我的代码

I have an app which gets data from json and displays it on recycler view and when each recycler view is clicked it opens a new activity to show full content. all i want to know is how to show a progress dialog befrore the second activity shows thanks. Here is my code

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


    }

推荐答案

您必须在第二个活动中处理它.在那里,您应该在后台线程中完成所有数据加载或繁重的处理工作,并在数据或处理完成时更新UI.

You have to deal with it in your second activity. There, you should do all your data loading or heavy processing work in a background thread and update the UI as and when you have the data or processing is completed.

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,就像显示图片一样.

onPreExecute() and onPostExecute() run on the UI thread. So you can update your UI here, like showing the image.

您的第二项活动现在应如下所示:

Your second activity should look like this now:

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

要获取更多帮助,请检查以下内容:

For further help, check these:

AsyncTask | Android Developers

这篇关于单击回收者视图时如何设置进度栏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆