Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(我不知道它是否相关,但我想在我的应用程序中使用自定义主题。)我应该使用哪个以及为什么(性能问题、简单性等)?
没有真正的区别。
您可以选择最适合您需求的。
如果您知道您希望将标题隐藏在应用程序的每个活动中,那么最好的解决方案是在AndroidManifest.xml文件中为整个应用程序设置主题
AndroidManifest.xml
<application android:theme="@android:style/Theme.Black.NoTitleBar">
当然,您可以更改@android:style/Theme.Black.NoTitleBar为您的自定义样式。
@android:style/Theme.Black.NoTitleBar