Issue
i am using a webview to load some content in one activity, and then in another activity i would like to reuse this same view. But when i try to reuse it, the content from the previous activity is still inside of the webview and the content never loads. How do i get around this to reuse the webview?
Solution
Try to use WebView.clearView()
or WebView.reload()
in onStart()
of your activities
Answered By - Barmaley
Answer Checked By - Marie Seifert (JavaFixing Admin)