Results 1 comments of Felix

You can extents your `WebViewClient` and override its method `shouldOverrideUrlLoading`. In that method, you can use codes as follows: ```java Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); mContext.startActivity(intent); ```