[Android] 移除 Activity 的 Title bar

Android 移除 Activity 標題列的快速設定,在 AndroidManifest.xml 的 activity 標籤加上 Theme.NoTitleBar 即可。

1
2
3
4
<activity android:name=".MyMainClass"
	          android:label="@string/app_name"
	          android:theme="@android:style/Theme.NoTitleBar">
</activity>

style/Theme.NoTitleBar

comments powered by Disqus
Powered by Hugo. Theme Stack. All Rights Reserved.