I have a web view that is loaded with an HTML that contains links.
when I switch to another activity (say to another tab in a tab
activity) and then switching back to it, the link is surrounded with
an orange rectangle. also happens in the GoogleAdView which really
makes it impossible to view.
I have a web view that is loaded with an HTML that contains links.
Share
It seems that the link in the WebView has the focus. Maybe you could avoid it by letting another view request the focus (
anotherView.requestFocus();) in onResume() or onStart().