ListView getItemType() && getItemTypeCount()

当你使用listview时,如果想要实现不同布局的item,则需要重写getItemType和getItemTypeCount方法。
例如你有两种布局,分别为A和B,那你需要为不同的类型返回不同的itemType,返回的itemType类型为int值。getItemTypeCount函数返回的值应该为2。
现在你在adapter中声明两个变量:
private final int A_TYPE=0;
private final int B_TYPE=1;
在getItemType函数中根据情况返回上述两个值。
那么需要注意的是上述两个变量不可以大于等于2!否则会抛出异常。
如果B_TYPE=2,那么在绘制B类型的item时,就会抛出异常。

你可能感兴趣的:(ListView)