Added a Google Shopper button when scanning products, and bumped the version to 3...
[zxing.git] / android / src / com / google / zxing / client / android / result / ProductResultHandler.java
index f712b47..916d8d9 100644 (file)
 
 package com.google.zxing.client.android.result;
 
-import android.app.Activity;
+import com.google.zxing.client.android.PreferencesActivity;
 import com.google.zxing.client.android.R;
 import com.google.zxing.client.result.ParsedResult;
 import com.google.zxing.client.result.ProductParsedResult;
 
-public final class ProductResultHandler extends ResultHandler {
+import android.app.Activity;
+import android.app.AlertDialog;
+import android.content.DialogInterface;
+import android.content.SharedPreferences;
+import android.preference.PreferenceManager;
 
-  private static final int[] mButtons = {
+/**
+ * Handles generic products which are not books.
+ *
+ * @author dswitkin@google.com (Daniel Switkin)
+ */
+public final class ProductResultHandler extends ResultHandler {
+  private static final int[] buttons = {
       R.string.button_product_search,
-      R.string.button_web_search
+      R.string.button_web_search,
+      R.string.button_google_shopper,
+      R.string.button_custom_product_search,
   };
 
+  private String customProductSearch;
+
   public ProductResultHandler(Activity activity, ParsedResult result) {
     super(activity, result);
+    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
+    customProductSearch = prefs.getString(PreferencesActivity.KEY_CUSTOM_PRODUCT_SEARCH, null);
+    if (customProductSearch != null && customProductSearch.length() == 0) {
+      customProductSearch = null;
+    }
   }
 
   @Override
   public int getButtonCount() {
-    return mButtons.length;
+    return customProductSearch != null ? buttons.length : buttons.length - 1;
   }
 
   @Override
   public int getButtonText(int index) {
-    return mButtons[index];
+    return buttons[index];
   }
 
   @Override
-  public void handleButtonPress(int index) {
-    ProductParsedResult productResult = (ProductParsedResult) mResult;
-    switch (index) {
-      case 0:
-        openProductSearch(productResult.getNormalizedProductID());
-        break;
-      case 1:
-        webSearch(productResult.getNormalizedProductID());
-        break;
-    }
+  public void handleButtonPress(final int index) {
+    showNotOurResults(index, new AlertDialog.OnClickListener() {
+      public void onClick(DialogInterface dialogInterface, int i) {
+        ProductParsedResult productResult = (ProductParsedResult) getResult();
+        switch (index) {
+          case 0:
+            openProductSearch(productResult.getNormalizedProductID());
+            break;
+          case 1:
+            webSearch(productResult.getNormalizedProductID());
+            break;
+          case 2:
+            openGoogleShopper(productResult.getNormalizedProductID());
+            break;
+          case 3:
+            String url = customProductSearch.replace("%s", productResult.getNormalizedProductID());
+            openURL(url);
+            break;
+        }
+      }
+    });
   }
 
   @Override
   public int getDisplayTitle() {
     return R.string.result_product;
   }
-
 }