Answer: How to hide action bar before activity is created, and then show it again? #development #answer #dev
Answer: How to hide action bar before activity is created, and then show it again? #development #answer #dev
How to hide action bar before activity is created, and then show it again?
I need to implements splash screen in my honeycomb app. I use this code in activity’s onCreate to show splash:
setContentView(R.layout.splash); getActionBar().hide();
and this code to show main UI after some time:
setContentView(R.layout.main); getActionBar().show();
But beforeonCreate is called and splash appears,…
View On WordPress









