Skip to content Skip to sidebar Skip to footer

Webview Handle Redirect Click Link With Intent.action_view

I've a difficult managing open link on webview content click with Intent.ACTION_VIEW on different device. My scenario is: i've some html code displayed within a webview inside my a

Solution 1:

That is because the method you are using was added only in API 24 (7.0), so it doesn't exist on older APIs, check here. What you need to do is to use the old one in this case. It is declared as Deprecated, but you still can use it.


Post a Comment for "Webview Handle Redirect Click Link With Intent.action_view"