我应该始终将 convertView 用作 Base 适配器中的主要 ViewElement 吗?

should I always use convertView as my main ViewElement in Base adapter?

BaseAdapter 的getView 中的变量convertView。它是做什么用的?创建项目时,我应该始终使用 convertView 吗?如果我不使用它会有什么问题?

What is it for? 

它是 View 的一个实例,如果你膨胀,第一次它的值为 null。例如

 if (convertView == null) {
      convertView = inflate...
 }

when creating items should I always use convertView?

是的,但尝试围绕它实现 ViewHolder 模式。它将加快卷轴的性能。

What is the problem if I don't use it?

这取决于您 ListView 中的物品数量。我们可以从滞后的用户体验到崩溃。