I am editing the pre-existing zxing Barcode Reader code so it can
voice itself for blind users.
I know how to use Text to speech in the app.
Right now I am at the step where after the barcode is read, it then
opens a webpage in the android browser - it sends the product number
to google. What i want to do is be able to read from that webpage-
whether its from the DOM or just being able to get the source for the
page.

Here is where the intent is launched:

    Uri uri = Uri.parse("http://www.google."; +
LocaleManager.getCountryTLD() + "/products?q=" + upc);
    launchIntent(new Intent(Intent.ACTION_VIEW, uri));

Do I need to use android.webkit somehow? Or is that just for making my
own webpages in the browser?
No clue how to proceed right now. Thanks, any help is very appreciated

Shani

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to