[android-developers] Re: Question regarding adding a view that can overlap other views in the layout/activity.

2009-04-20 Thread Ravi Chittari
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

[android-developers] Re: WebView - issues with back button

2009-04-09 Thread Ravi Chittari
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)