Add history feature; group some functionality into subpackages
[zxing.git] / android / src / com / google / zxing / client / android / result / URIResultHandler.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 import com.google.zxing.client.result.URIParsedResult;
22
23 import android.app.Activity;
24
25 /**
26  * Offers appropriate actions for URLS.
27  *
28  * @author dswitkin@google.com (Daniel Switkin)
29  */
30 public final class URIResultHandler extends ResultHandler {
31   private static final int[] buttons = {
32       R.string.button_open_browser,
33       R.string.button_share_by_email,
34       R.string.button_share_by_sms
35   };
36
37   public URIResultHandler(Activity activity, ParsedResult result) {
38     super(activity, result);
39   }
40
41   @Override
42   public int getButtonCount() {
43     return buttons.length;
44   }
45
46   @Override
47   public int getButtonText(int index) {
48     return buttons[index];
49   }
50
51   @Override
52   public void handleButtonPress(int index) {
53     URIParsedResult uriResult = (URIParsedResult) getResult();
54     switch (index) {
55       case 0:
56         openURL(uriResult.getURI());
57         break;
58       case 1:
59         shareByEmail(uriResult.getURI());
60         break;
61       case 2:
62         shareBySMS(uriResult.getURI());
63         break;
64     }
65   }
66
67   @Override
68   public int getDisplayTitle() {
69     return R.string.result_uri;
70   }
71 }