gpt4 book ai didi

android - 在 Recyclerview 的情况下,listview.getCount 的等效项是什么

转载 作者:可可西里 更新时间:2023-11-01 18:44:08 26 4
gpt4 key购买 nike

我已经使用了 listview.getCount() 如何在 Recyclerview 的情况下获取计数

id = receiver + "-" + splashList.getCount();

适配器中的自定义方法:

public void setImage(String my_image, String r_image) {
byte[] decodedrimage = Base64.decode(r_image, Base64.DEFAULT);
Bitmap decodedrByte = BitmapFactory.decodeByteArray(decodedrimage, 0,
decodedrimage.length);
if (my_image.equals("empty")) {
imgflag = 1;
} else {
byte[] decodedmyimage = Base64.decode(my_image, Base64.DEFAULT);
Bitmap decodedmyByte = BitmapFactory.decodeByteArray(
decodedmyimage, 0, decodedmyimage.length);
rimage = createCirclebitmap(decodedrByte);
myimage = createCirclebitmap(decodedmyByte);
}

}

并调用另一个类中的方法:

CustomListAdapter1 mAdapter ;
mAdapter = new CustomListAdapter1(NewUI.this, dummy,
imgpath, bitmap, id, dateList);
mAdapter.setImage(myimage, rimage);

最佳答案

没有对应的。 RecyclerView 不直接了解底层数据集。最接近的是

int count = 0;
if (recyclerViewInstance.getAdapter() != null) {
count = recyclerViewInstance.getAdapter().getItemCount();
}

或者如果您有对适配器的引用,只需调用

  int count = 0;
if (mAdapter != null) {
count = mAdapter.getItemCount();
}

关于android - 在 Recyclerview 的情况下,listview.getCount 的等效项是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31218063/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com