gpt4 book ai didi

java - firebase 数据库或我的 ListView 在前几项之后复制数据

转载 作者:行者123 更新时间:2023-12-05 05:36:05 25 4
gpt4 key购买 nike

我正在使用 firebase 数据库和 glide 来访问存储在 firebase 存储中的图像。但是当我运行代码时,它似乎在前 6 个之后复制了项目。这是我的数据库引用

ref = db.getReference().child("LOGOS");

在我的数据库中是这样的

{
"70s": "My FirebaseStorage https web address",
"80s": "My FirebaseStorage https web address",
"90s": "My FirebaseStorage https web address",
"COMMERCIAL": "My FirebaseStorage https web address",
"DANCE": "My FirebaseStorage https web address",
"HIPHOP": "My FirebaseStorage https web address",
"MASHUP": "My FirebaseStorage https web address",
"NEWS": "My FirebaseStorage https web address"
}

然后这是我的代码

ref.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot snapshot) {
Genre_Adapter adapter;
imageUrl.clear();

for (DataSnapshot snapa : snapshot.getChildren()) {


String logo = snapa.getValue(String.class);

imageUrl.add(logo);

// I've added a Log here to see that the data returns the right values and it
// does, but when loaded in to the list view it repeats.

String key = snapa.getKey();

Log.e("KEYS", key);

这些是我的日志中返回的值

this is what is returned when i log.e the string key

2022-08-15 11:47:08.958 19751-19751/com.p9p.radioify E/KEYS: 70S
2022-08-15 11:47:08.959 19751-19751/com.p9p.radioify E/KEYS: 80S
2022-08-15 11:47:08.959 19751-19751/com.p9p.radioify E/KEYS: 90S
2022-08-15 11:47:08.959 19751-19751/com.p9p.radioify E/KEYS: COM
2022-08-15 11:47:08.959 19751-19751/com.p9p.radioify E/KEYS: DANCE
2022-08-15 11:47:08.960 19751-19751/com.p9p.radioify E/KEYS: DRUM & BASS
2022-08-15 11:47:08.960 19751-19751/com.p9p.radioify E/KEYS: HIPHOP
2022-08-15 11:47:08.960 19751-19751/com.p9p.radioify E/KEYS: MASHUP
2022-08-15 11:47:08.960 19751-19751/com.p9p.radioify E/KEYS: NEWS
2022-08-15 11:47:08.960 19751-19751/com.p9p.radioify E/KEYS: TRANCE
2022-08-15 11:47:08.960 19751-19751/com.p9p.radioify E/KEYS: UNITEDKINGDOM

这是我为我的适配器类转换为数组的地方

            imageurl = imageUrl.toArray(new String[imageUrl.size()]);
adapter = new Genre_Adapter(getContext(), imageurl);
}#

adapter = new Genre_Adapter(getContext(), imageurl);
mlist.setAdapter(adapter);

mlist.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
genre_list_item gli = new genre_list_item();
Bundle bundle = new Bundle();
bundle.putString("Genre", btntitle.get(position));
Log.i("genre_title", btntitle.get(position));
gli.setArguments(bundle);
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.frame1, gli, "genre_list_item")
.addToBackStack(null).commit();


}

这是我的适配器类

public Genre_Adapter(Context context,String[]logo){
this. context = context;
this.logo = logo;
}
@Override
public int getCount() {
return logo.length;
}

@Override
public Object getItem(int position) {
return logo[position];
}

@Override
public long getItemId(int position) {
return position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
final View row;

if (convertView == null) {
row = LayoutInflater.from(parent.getContext()).inflate(R.layout.genre, parent, false);
imageView = row.findViewById(R.id.image);
} else {
row = convertView;
}
Glide.with(context).load(logo[position]).into(imageView);

return (row);
}

**编辑我今天已经尝试过这些答案。这些都没有用。

Why did the ListView repeated every 6th item?

这也是我的应用程序的图像,用于显示正在发生的事情 enter image description here

最佳答案

这是一个如此简单的修复,我可能会因为没有得到它而踢自己我的适配器中的 ImageView 在错误的位置被初始化。替换

 if (convertView == null) {
row = LayoutInflater.from(parent.getContext()).inflate(R.layout.genre, parent, false);
imageView = row.findViewById(R.id.image);
} else {
row = convertView;
}
Glide.with(context).load(logo[position]).into(imageView);

return (row);
}

if (convertView == null) {

row = mLayoutInflater.inflate(R.layout.genre, null);

} else {
row = convertView;
}

imageView = (ImageView) row.findViewById(R.id.image);
Glide.with(context).load(logo[position]).into(imageView);
return row;
}

更正了问题,哈哈

关于java - firebase 数据库或我的 ListView 在前几项之后复制数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73359874/

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