使用ProgressBar加载数据?

时间:2017-09-03 06:34:52

标签: android progress-bar recycler-adapter

我的项目中有RecyclerView,其中包含自定义适配器,如何使用RecyclerView将数据从适配器加载到ProgressBar 活动中的适配器:

adapter = new HistoryAdapter(this, MOMENTS);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.setAdapter(adapter);

我想在ProgressBar满(100%)RecyclerView时填充适配器......

1 个答案:

答案 0 :(得分:0)

如果您知道回收站视图中有多少数据,只需在添加数据时更新进度条,然后计算进度。

有一个setProgress方法,请检查此link

如果你不知道你的适配器中会有很多数据,我认为你无法提供正确的值。