StouteEnterprises wrote: > When I built the app I only used one webview, This loads a webpage, > all the future navigation is all through the website loaded not the > application.
Meaning that you have a WebViewClient and are using shouldOverrideUrlLoading() to have each link be loaded into the WebView? > Is there a way to allow the back button to reload the most recent > history just like the Browser that comes with the phone? If you are using the technique I describe above, then no -- you need to track the history and implement the BACK button logic. WebView is a rendering widget, not a full Web browser. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 1.0 In Print! -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

