I have disabled the android address bar by using the below line of code.
if(isAddressBarEnabled)
mLayout.findViewById(R.id.address_bar).setVisibility(View.VISIBLE);
else
mLayout.findViewById(R.id.address_bar).setVisibility(View.GONE);
Here as i click on a link it would first show the address bar and once the page is loaded it would disappear. I want to disable the address bar while loading also. Is it possible.