32fbb1007ef1ff7bb9ed84157ca100047e8664de
[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   public SearchBookContentsAdapter(Context context, List<SearchBookContentsResult> items) {
36     super(context, R.layout.search_book_contents_list_item, 0, items);
37   }
38
39   @Override
40   public View getView(int position, View view, ViewGroup viewGroup) {
41     SearchBookContentsListItem listItem;
42
43     if (view == null) {
44       LayoutInflater factory = LayoutInflater.from(getContext());
45       listItem = (SearchBookContentsListItem) factory.inflate(
46           R.layout.search_book_contents_list_item, viewGroup, false);
47     } else {
48       if (view instanceof SearchBookContentsListItem) {
49         listItem = (SearchBookContentsListItem) view;
50       } else {
51         return view;
52       }
53     }
54
55     SearchBookContentsResult result = getItem(position);
56     listItem.set(result);
57     return listItem;
58   }
59 }