Add history feature; group some functionality into subpackages
[zxing.git] / android / src / com / google / zxing / client / android / book / SearchBookContentsListItem.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.graphics.Typeface;
21 import android.text.SpannableString;
22 import android.text.Spannable;
23 import android.text.style.StyleSpan;
24 import android.util.AttributeSet;
25 import android.widget.LinearLayout;
26 import android.widget.TextView;
27 import com.google.zxing.client.android.R;
28
29 /**
30  * A list item which displays the page number and snippet of this search result.
31  *
32  * @author dswitkin@google.com (Daniel Switkin)
33  */
34 final class SearchBookContentsListItem extends LinearLayout {
35   private TextView pageNumberView;
36   private TextView snippetView;
37
38   SearchBookContentsListItem(Context context) {
39     super(context);
40   }
41
42   public SearchBookContentsListItem(Context context, AttributeSet attrs) {
43     super(context, attrs);
44   }
45
46   @Override
47   protected void onFinishInflate() {
48     super.onFinishInflate();
49     pageNumberView = (TextView) findViewById(R.id.page_number_view);
50     snippetView = (TextView) findViewById(R.id.snippet_view);
51   }
52
53   public void set(SearchBookContentsResult result) {
54     pageNumberView.setText(result.getPageNumber());
55     String snippet = result.getSnippet();
56     if (snippet.length() > 0) {
57       if (result.getValidSnippet()) {
58         String lowerQuery = SearchBookContentsResult.getQuery().toLowerCase();
59         String lowerSnippet = snippet.toLowerCase();
60         Spannable styledSnippet = new SpannableString(snippet);
61         StyleSpan boldSpan = new StyleSpan(Typeface.BOLD);
62         int queryLength = lowerQuery.length();
63         int offset = 0;
64         while (true) {
65           int pos = lowerSnippet.indexOf(lowerQuery, offset);
66           if (pos < 0) {
67             break;
68           }
69           styledSnippet.setSpan(boldSpan, pos, pos + queryLength, 0);
70           offset = pos + queryLength;
71         }
72         snippetView.setText(styledSnippet);
73       } else {
74         // This may be an error message, so don't try to bold the query terms within it
75         snippetView.setText(snippet);
76       }
77     } else {
78       snippetView.setText("");
79     }
80   }
81 }