Style-related changes
[zxing.git] / android / src / com / google / zxing / client / android / result / TextResultHandler.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 com.google.zxing.client.android.R;
20 import com.google.zxing.client.result.ParsedResult;
21
22 import android.app.Activity;
23
24 /**
25  * This class handles TextParsedResult as well as unknown formats. It's the fallback handler.
26  *
27  * @author dswitkin@google.com (Daniel Switkin)
28  */
29 public final class TextResultHandler extends ResultHandler {
30
31   private static final int[] buttons = {
32       R.string.button_web_search,
33       R.string.button_share_by_email,
34       R.string.button_share_by_sms,
35       R.string.button_custom_product_search,
36   };
37
38   private final String customProductSearch;
39
40   public TextResultHandler(Activity activity, ParsedResult result) {
41     super(activity, result);
42     customProductSearch = parseCustomSearchURL();
43   }
44
45   @Override
46   public int getButtonCount() {
47     return customProductSearch != null ? buttons.length : buttons.length - 1;
48   }
49
50   @Override
51   public int getButtonText(int index) {
52     return buttons[index];
53   }
54
55   @Override
56   public void handleButtonPress(int index) {
57     String text = getResult().getDisplayResult();
58     switch (index) {
59       case 0:
60         webSearch(text);
61         break;
62       case 1:
63         shareByEmail(text);
64         break;
65       case 2:
66         shareBySMS(text);
67         break;
68       case 3:
69         String url = customProductSearch.replace("%s", text);
70         openURL(url);
71         break;
72     }
73   }
74
75   @Override
76   public int getDisplayTitle() {
77     return R.string.result_text;
78   }
79 }