作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
每次向上或向下滚动时,我的 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/
我是一名优秀的程序员,十分优秀!