视图类型是什么意思?

What does View type mean?

Adapterclass 的 getItemViewType 方法应该

Get the type of View that will be created by getView(int, View, ViewGroup)

并非适配器中的所有项都需要具有相同的视图来表示它们。视图类型只是一个表示它是哪种类型的 int - 基本上是在 运行 时间定义的枚举。如果只有 1 个视图,它们都应该 return 0。如果有多个视图,那么每个类型都应该 return 一个介于 0 和 numTypes-1 之间的唯一 ID。