Issues 155.2 -- add %f for format
[zxing.git] / android / src / com / google / zxing / client / android / result / ProductResultHandler.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.Result;
20 import com.google.zxing.client.android.R;
21 import com.google.zxing.client.result.ParsedResult;
22 import com.google.zxing.client.result.ProductParsedResult;
23
24 import android.app.Activity;
25 import android.app.AlertDialog;
26 import android.content.DialogInterface;
27
28 /**
29  * Handles generic products which are not books.
30  *
31  * @author dswitkin@google.com (Daniel Switkin)
32  */
33 public final class ProductResultHandler extends ResultHandler {
34   private static final int[] buttons = {
35       R.string.button_product_search,
36       R.string.button_web_search,
37       R.string.button_google_shopper,
38       R.string.button_custom_product_search,
39   };
40
41   public ProductResultHandler(Activity activity, ParsedResult result, Result rawResult) {
42     super(activity, result, rawResult);
43   }
44
45   @Override
46   public int getButtonCount() {
47     return hasCustomProductSearch() ? 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(final int index) {
57     showNotOurResults(index, new AlertDialog.OnClickListener() {
58       public void onClick(DialogInterface dialogInterface, int i) {
59         ProductParsedResult productResult = (ProductParsedResult) getResult();
60         switch (index) {
61           case 0:
62             openProductSearch(productResult.getNormalizedProductID());
63             break;
64           case 1:
65             webSearch(productResult.getNormalizedProductID());
66             break;
67           case 2:
68             openGoogleShopper(productResult.getNormalizedProductID());
69             break;
70           case 3:
71             openURL(fillInCustomSearchURL(productResult.getNormalizedProductID()));
72             break;
73         }
74       }
75     });
76   }
77
78   @Override
79   public int getDisplayTitle() {
80     return R.string.result_product;
81   }
82 }