c8d4122f0008b0380ad89bb8886610d403465643
[zxing.git] / android / src / com / google / zxing / client / android / book / SearchBookContentsAdapter.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android.book;
18
19 import android.content.Context;
20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.ViewGroup;
23 import android.widget.ArrayAdapter;
24
25 import java.util.List;
26
27 import com.google.zxing.client.android.R;
28
29 /**
30  * Manufactures list items which represent SBC results.
31  *
32  * @author dswitkin@google.com (Daniel Switkin)
33  */
34 final class SearchBookContentsAdapter extends ArrayAdapter<SearchBookContentsResult> {
35
36   SearchBookContentsAdapter(Context context, List<SearchBookContentsResult> items) {
37     super(context, R.layout.search_book_contents_list_item, 0, items);
38   }
39
40   @Override
41   public View getView(int position, View view, ViewGroup viewGroup) {
42     SearchBookContentsListItem listItem;
43
44     if (view == null) {
45       LayoutInflater factory = LayoutInflater.from(getContext());
46       listItem = (SearchBookContentsListItem) factory.inflate(
47           R.layout.search_book_contents_list_item, viewGroup, false);
48     } else {
49       if (view instanceof SearchBookContentsListItem) {
50         listItem = (SearchBookContentsListItem) view;
51       } else {
52         return view;
53       }
54     }
55
56     SearchBookContentsResult result = getItem(position);
57     listItem.set(result);
58     return listItem;
59   }
60 }