Try adding current javadoc to SVN
[zxing.git] / android / src / com / google / zxing / client / android / 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;
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 public final class SearchBookContentsAdapter extends ArrayAdapter<SearchBookContentsResult> {
28
29   public SearchBookContentsAdapter(Context context, List<SearchBookContentsResult> items) {
30     super(context, R.layout.search_book_contents_list_item, 0, items);
31   }
32
33   @Override
34   public View getView(int position, View view, ViewGroup viewGroup) {
35     SearchBookContentsListItem listItem;
36
37     if (view == null) {
38       LayoutInflater factory = LayoutInflater.from(getContext());
39       listItem = (SearchBookContentsListItem) factory.inflate(
40           R.layout.search_book_contents_list_item, viewGroup, false);
41     } else {
42       if (view instanceof SearchBookContentsListItem) {
43         listItem = (SearchBookContentsListItem) view;
44       } else {
45         return view;
46       }
47     }
48
49     SearchBookContentsResult result = getItem(position);
50     listItem.set(result);
51     return listItem;
52   }
53
54 }