在RecyclerView行上安装Android更新progressBar

时间:2016-12-15 14:44:08

标签: android

我试图找到任何好的文档和教程来更新我在recyclerView项目上附加的进度百分比,例如屏幕截图:

enter image description here

enter image description here

我无法在progressbar上找到有关更新recycleview的任何文件

1 个答案:

答案 0 :(得分:-3)

如果你使用Glide,你可以设置placeholder(仅图像,没有进度百分比)。

https://futurestud.io/tutorials/glide-placeholders-fade-animations

@Override
public void onBindViewHolder(ViewHolder viewHolder, int position) {

// ... ...

Glide  
    .with(context)
    .load(stringURL)
    .placeholder(R.drawable.ic_placeholder)
    .into(imageView);

}