我在我的应用程序中有不同的活动,在所有这些活动中我都不想要动作栏.我找不到如何禁用它.我试图找到一个属性将其应用到main_activity.xml但到目前为止我没有找到任何东西.有人可以帮帮我吗?
解决方法:
哈哈,我刚才也被困在那一点上,所以我很高兴我可以帮你解决问题,至少对我有用:)
你想要做的是在values / styles.xml中定义一个新样式,使它看起来像这样
<resources> <style name = "Apptheme" parent = "androID:theme.Holo.light.DarkActionbar"> <!-- Customize your theme here. --> </style> <style name = "NoActionbar" parent = "@androID:style/theme.Holo.light"> <item name = "androID:windowActionbar">false</item> <item name = "androID:windowNoTitle">true</item> </style></resources>
只有NoActionbar风格才有意义.最后你必须在AndroIDManifest.xml中设置为应用程序的主题,所以它看起来像这样
<application androID:allowBackup = "true" androID:icon = "@drawable/ic_launcher" androID:label = "@string/app_name" androID:theme = "@style/NoActionbar" <!--This is the important line--> > <activity [...]
我希望这有帮助,如果没有,请告诉我.
总结以上是内存溢出为你收集整理的java – 没有ActionBar的Android Activity全部内容,希望文章能够帮你解决java – 没有ActionBar的Android Activity所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)