Issue 155: allow custom product search, and, other small tweaks I think nobody will...
[zxing.git] / android / src / com / google / zxing / client / android / result / ISBNResultHandler.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.result;
18
19 import android.app.Activity;
20 import android.content.SharedPreferences;
21 import android.preference.PreferenceManager;
22 import com.google.zxing.client.android.R;
23 import com.google.zxing.client.android.PreferencesActivity;
24 import com.google.zxing.client.result.ISBNParsedResult;
25 import com.google.zxing.client.result.ParsedResult;
26
27 public final class ISBNResultHandler extends ResultHandler {
28
29   private static final int[] mButtons = {
30       R.string.button_product_search,
31       R.string.button_book_search,
32       R.string.button_search_book_contents,
33       R.string.button_custom_product_search,
34   };
35
36   private final String mCustomProductSearch;
37
38   public ISBNResultHandler(Activity activity, ParsedResult result) {
39     super(activity, result);
40     SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
41     mCustomProductSearch = prefs.getString(PreferencesActivity.KEY_CUSTOM_PRODUCT_SEARCH, null);
42   }
43
44   @Override
45   public int getButtonCount() {
46     return mCustomProductSearch != null && mCustomProductSearch.length() > 0 ? mButtons.length : mButtons.length - 1;
47   }
48
49   @Override
50   public int getButtonText(int index) {
51     return mButtons[index];
52   }
53
54   @Override
55   public void handleButtonPress(int index) {
56     ISBNParsedResult isbnResult = (ISBNParsedResult) mResult;
57     switch (index) {
58       case 0:
59         openProductSearch(isbnResult.getISBN());
60         break;
61       case 1:
62         openBookSearch(isbnResult.getISBN());
63         break;
64       case 2:
65         searchBookContents(isbnResult.getISBN());
66         break;
67       case 3:
68         String url = mCustomProductSearch.replace("%s", isbnResult.getISBN());
69         openURL(url);
70         break;
71     }
72   }
73
74   @Override
75   public int getDisplayTitle() {
76     return R.string.result_isbn;
77   }
78
79 }