Android Question App & Web Site

luke2012

Well-Known Member
Licensed User
Longtime User
Hi all,
I have an app where each item have a corresponding full data item within a website.
Which is the best approach in order to implement a good user experience:

1) Open the full item data within the optimized website page (full item is displayed within chrome)
2) Using a webview to display the full item data within the App

Note that after display the full item data within the website page user must be able to interact with the we page (buttons, links etc..).

Thanks in advance for the replies ;-)
 

Ganiadi

Active Member
Licensed User
Longtime User
I think that WebView should be the first choice. It keeps the user inside your app without any distraction.

Hi erel, i just wonder is there any way how to redirect from webview ( webbrowser ) back to apps, say it for example we have a button "Next" and after clicking the button it may return back to apps
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Use a webview, activate javascriptinterface and change your website to use the bridge (javascriptinterface) to communicate with your app. See webview tutorial
 
Upvote 0
Top