Android listviewsで効率を最大化するには、画面に収まるのに必要な数の膨張した 'row'ビューのみを使用する必要があることを学びました。ビューが画面から移動すると、 getView
がnullかどうかを確認して、convertView
メソッドで再利用する必要があります。
ただし、リストに2つの異なるレイアウトが必要な場合、このアイデアをどのように実装できますか?注文のリストと1つのレイアウトが完了した注文用で、もう1つのレイアウトが処理中の注文用であるとします。
これは、私のコードが使用しているアイデアのチュートリアル例です。私の場合、2つの行レイアウトがあります:R.layout.listview_item_product_complete
およびR.layout.listview_item_product_inprocess
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder = null;
if (convertView == null) {
holder = new ViewHolder();
if(getItemViewType(position) == COMPLETE_TYPE_INDEX) {
convertView = mInflator.inflate(R.layout.listview_item_product_complete, null);
holder.mNameTextView = (TextView) convertView.findViewById(R.list.text_complete);
holder.mImgImageView = (ImageView) convertView.findViewById(R.list.img_complete);
}
else { // must be INPROCESS_TYPE_INDEX
convertView = mInflator.inflate(R.layout.listview_item_product_inprocess, null);
holder.mNameTextView = (TextView) convertView.findViewById(R.list.text_inprocess);
holder.mImgImageView = (ImageView) convertView.findViewById(R.list.img_inprocess);
}
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
thisOrder = (Order) myOrders.getOrderList().get(position);
// If using different views for each type, use an if statement to test for type, like above
holder.mNameTextView.setText(thisOrder.getNameValue());
holder.mImgImageView.setImageResource(thisOrder.getIconValue());
return convertView;
}
public static class ViewHolder {
public TextView mNameTextView;
public ImageView mImgImageView;
}
アダプターのビューリサイクラに、複数のレイアウトがあることと、各行の2つを区別する方法を知らせる必要があります。これらのメソッドをオーバーライドするだけです:
_@Override
public int getItemViewType(int position) {
// Define a way to determine which layout to use, here it's just evens and odds.
return position % 2;
}
@Override
public int getViewTypeCount() {
return 2; // Count of different layouts
}
_
getItemViewType()
を次のようにgetView()
内に組み込みます:
_if (convertView == null) {
// You can move this line into your constructor, the inflater service won't change.
mInflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
if(getItemViewType(position) == 0)
convertView = mInflater.inflate(R.layout.listview_item_product_complete, parent, false);
else
convertView = mInflater.inflate(R.layout.listview_item_product_inprocess, parent, false);
// etc, etc...
_
GoogleトークでAndroidのRomain Guyをご覧ください ビューリサイクラについて説明します .
ソリューションを自分で設計する必要はありません。getItemViewType()とgetViewTypeCount()をオーバーライドするだけです。
例については、次のブログ投稿を参照してください http://sparetimedev.blogspot.co.uk/2012/10/recycling-of-views-with-heterogeneous.html
ブログで説明されているように、Android=は実際にはgetViewが正しいタイプのビューを受け取ることを保証しません。