gpt4 book ai didi

android - 每次滚动时都会调用 CustomAdapter getView()

转载 作者:行者123 更新时间:2023-11-29 17:32:25 24 4
gpt4 key购买 nike

每次向上或向下滚动时,我的 CustomAdapter 中的 getView() 方法都会被调用。

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

View vi = convertView;
ViewHolder holder;
if (convertView == null) {
vi = inflater.inflate(R.layout.projectlist, null);

holder = new ViewHolder();
holder.projectTitelTextView = (TextView) vi.findViewById(R.id.projectTitle);
holder.projectInfoTextView = (TextView) vi.findViewById(R.id.projectInfo);
holder.projectImageImageView = (ImageView) vi.findViewById(R.id.projectImage);
holder.projectDeadline = (TextView) vi.findViewById(R.id.projectdeadline);

vi.setTag(holder);
} else {
holder = (ViewHolder) vi.getTag();
}
if (projectItems.size() <= 0) {
[...]
} else {
[...]
}
}
return vi;
}

ListView XML:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:id="@+id/container"
android:layout_width="match_parent" android:layout_height="match_parent"
tools:context=".MainActivity" tools:ignore="MergeRootFrame">

<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<ListView android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:focusable="false"
android:clickable="false"
android:smoothScrollbar="true" />

</LinearLayout>

为什么每次向上或向下滚动时都会调用它?假设我显示了 10 个项目。如果我向下滚动,getView() 调用一次,它会再显示一项。如果我硬滚动并想转到列表的末尾。它会被多次调用,直到数据加载并显示。

如果我想向上滚动,会发生同样的情况。

我能做些什么来防止多次调用 getView() 或者是否有必要?

亲切的问候

最佳答案

这就是 ListAdapter 的工作原理。 getView() 在需要创建新列表项时使用,或者至少在需要使用特定位置的数据更新列表项时使用。

关于android - 每次滚动时都会调用 CustomAdapter getView(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32306210/

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