I have a HTML property to load
<a href="https://www.w3schools.com" target="_blank" rel="noopener noreferrer">Visit W3Schools.com!</a>
I load this to my Android Screen using
webView.loadDataWithBaseURL(null, my_url, "text/html; charset=utf-8", "UTF-8", null);
But when I try clicking on it the link doesn't take me to a new window but opens in the current window, even though i specified target="_blank"
in my HTML.
How can i make it load the link in a new window in Android??