There is possibility to hide your title bar in application. It is very easy and I am going to show how you can do it.
There are 2 ways,one from code other from AndroidManifest.xml file.
I will show both solutions.
Use this code snippet inside onCreate method:
@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);requestWindowFeature(Window.FEATURE_NO_TITLE);...Or you can do the same in AndroidManifest.xml file:
That’s all. You hided your activity’s title bar.
As you can see it is very simple.
I hope it was useful for you.
No related posts.

Recent Comments