I am trying this in two ways
(a) defining my custom view as part of the Layout file. When the app runs
and activity loads this layout. The custom View runs and displays the
content in its position. The enclosing layout of my custom view could be
any layout not just Linear. For example, if enclos
I tried this approach and it worked out fine.
I followed step 3 and
I used WebViewClient implemented my own
shouldOverrideUrlLoading()
>From within this method
public boolean shouldOverrideUrlLoading(WebView view, String url) {
Intent i = new Intent( Intent.ACTION_VIEW, Uri.parse(url)
2 matches
Mail list logo