gpt4 book ai didi

android - ListView 中最后一项的 ImageViews 的奇怪行为

转载 作者:行者123 更新时间:2023-11-29 16:09:46 25 4
gpt4 key购买 nike

我有一个带有自定义适配器的 ListView。在每一行中都有一个仅在特定约束下可见的 ImageView。问题是如果第一行有这个 ImageView 可见,那么最后一行也可见,反之亦然。

这是我的适配器的 getView() 代码。

public View getView(int position, View view, ViewGroup parent) {
if (view == null) {
LayoutInflater inflater = (LayoutInflater) mContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.row_idea, null);
}

Idea idea = mIdeas.get(position);

if (idea != null) {
ImageView imgAlarm = (ImageView) view
.findViewById(R.id.imgAlarm_rowIdea);
if (idea.getTimeReminder() != null)
imgAlarm.setVisibility(ImageView.VISIBLE);

TextView lblTitle = (TextView) view
.findViewById(R.id.lblTitle_rowIdea);
lblTitle.setText(idea.getTitle());

TextView lblDescription = (TextView) view
.findViewById(R.id.lblDescription_rowIdea);
lblDescription.setText(idea.getDescription());
}
return view;
}

mIdeas 是一个 ArrayList,所有数据都显示在 ListView 中。imgAlarm就是我上面说的ImageView

最佳答案

改变

if (idea.getTimeReminder() != null)
imgAlarm.setVisibility(ImageView.VISIBLE);

if (idea.getTimeReminder() != null)
imgAlarm.setVisibility(ImageView.VISIBLE);
else
imgAlarm.setVisibility(ImageView.GONE);

这里发生的是适配器正在“回收” View 。因此,如果您在测试中看到,最后一个 View 和第一个 View 实际上是同一个实例。

关于android - ListView 中最后一项的 ImageViews 的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14418552/

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