Final changes for v2.7 of Barcode Scanner, including sending product lookups to the...
[zxing.git] / android / src / com / google / zxing / client / android / result / ResultHandler.java
index 63f380c..5c150fe 100644 (file)
@@ -253,9 +253,10 @@ public abstract class ResultHandler {
         LocaleManager.getCountryTLD() + "/maps?f=d&daddr=" + latitude + ',' + longitude)));
   }
 
+  // Uses the mobile-specific version of Product Search, which is formatted for small screens.
   public final void openProductSearch(String upc) {
-    Uri uri = Uri.parse("http://www.google." + LocaleManager.getCountryTLD() + "/products?q=" +
-        upc);
+    Uri uri = Uri.parse("http://www.google." + LocaleManager.getProductSearchCountryTLD() +
+        "/m/products?q=" + upc + "&source=zxing");
     launchIntent(new Intent(Intent.ACTION_VIEW, uri));
   }