In android, we can hide the title bar in 2 ways. Hiding the title bar is used to show the full screen in game applications, browser related applications, etc…
First method is through code , we have already seen that.
Second method is through AndroidManifest.xml. You can give the below source in your androidmanifest.xml to hide the title bar.
1 | <activity android:name=".YourClassName" |
2 | android:theme="@android:style/Theme.NoTitleBar"> |
3 | </activity> |
The output will looks like
Before,
After,
本文介绍了两种在Android应用中隐藏标题栏的方法:一种是通过代码实现;另一种是在AndroidManifest.xml文件中设置。具体操作是在<activity>标签内添加属性android:theme=@android:style/Theme.NoTitleBar。
5896

被折叠的 条评论
为什么被折叠?



