Android Webview - Prevent Reload When Go Back To The App
How to prevent reload on webview when your back to the app? When tapping home key and then back to the app, the webview was reloaded. I dont want this behaviour, I want users to vi
Solution 1:
Test this by adding android:launchMode="singleInstance"
to your <activity>
element in your androidmanifest.xml
.
Post a Comment for "Android Webview - Prevent Reload When Go Back To The App"