Issue 521, avoid an NPE
[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   public TextResultHandler(Activity activity, ParsedResult result) {
39     super(activity, result);
40   }
41
42   @Override
43   public int getButtonCount() {
44     return hasCustomProductSearch() ? buttons.length : buttons.length - 1;
45   }
46
47   @Override
48   public int getButtonText(int index) {
49     return buttons[index];
50   }
51
52   @Override
53   public void handleButtonPress(int index) {
54     String text = getResult().getDisplayResult();
55     switch (index) {
56       case 0:
57         webSearch(text);
58         break;
59       case 1:
60         shareByEmail(text);
61         break;
62       case 2:
63         shareBySMS(text);
64         break;
65       case 3:
66         openURL(fillInCustomSearchURL(text));
67         break;
68     }
69   }
70
71   @Override
72   public int getDisplayTitle() {
73     return R.string.result_text;
74   }
75 }