Reputation: 6643
I'm working on an app which tracks a product from online shopping sites like Amazon and notifies you when there is a price drop.
But the problem is - how to take input from the user on which product to track.
i.e. How should the user let the app know which product to track?
Copying the URL of product, and pasting it in my app, would help. But this is not user friendly.
What are more user friendly ways to solve this problem? Any help would be appreciated.
Thanks in advance!
Upvotes: 0
Views: 85
Reputation: 5227
The idea you can achieve this is by Adding / extending a webview for browsing the sites inside your app. You can implement some logic such that when user long press the item of the product grid your program can capture the url of the product and save it. Have a look on This Link
Upvotes: 1
Reputation: 153
Maybe using a share button. The user will surf in any browser and when he will desire he will share the link with your app.
Upvotes: 1