I have 4 tabs at top of my application. One tab opens a Url but clicking on the link in that page hides the tabBar which is not required.
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.news); WebView bpBrowser=(WebView) findViewById(R.id.wvBrowser); bpBrowser.loadUrl("https://www.google.co.in/"); }
For any help Thanks
bpBrowser.setWebViewClient(new WebViewClient());
– Raghav