Monday, November 25, 2013

How to override 'web site not found' message in webview control


Add the following code inside of 'onCreate(Bundle savedInstanceState)' function,

 locationview.setWebViewClient(new WebViewClient()
{
   public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
  {
locationview.loadUrl("file:///assets/error.html");

  }  });

The above URL will be load if the web page not found in the webview control.

Saturday, August 10, 2013

How to remove notification bar

Put this code in your onCreate() method,

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

How to remove title bar..

Put this in your onCreate() method.

this.requestWindowFeature(Window.FEATURE_NO_TITLE);