我需要制作Action bar叠加层并使用半透明背景,因此我已将styles.xml修改为此代码:
<resources> <style name="AppBasetheme" parent="androID:theme.light"> <!-- theme customizations available in newer API levels can go in res/values-vXX/styles.xml,while customizations related to backward-compatibility can go here. --> </style> <!-- Application theme. --> <style name="Apptheme" parent="AppBasetheme"> <!-- All customizations that are NOT specific to a particular API-level can go here. --> </style> <!-- TRANSLUCENT theme --> <style name="TranslucentAB" parent="theme.AppCompat.light"> <item name="windowActionbarOverlay">true</item> <item name="androID:windowActionbarOverlay">true</item> <item name="androID:actionbarStyle">@style/Blackbar</item> <item name="actionbarStyle">@style/Blackbar</item> </style> <!-- TRANsllUCENT color STYLE --> <style name="Blackbar" parent="@style/Widget.AppCompat.light.Actionbar.solID.Inverse"> <item name="androID:background">@drawable/halfblack</item> <item name="background">@drawable/halfblack</item> </style></resources>
并修改了清单文件以使新的Actionbar适应:
androID:theme="@style/TranslucentAB"
问题是以下两行代码需要API级别11及以上:
<item name="androID:windowActionbarOverlay">true</item><item name="androID:actionbarStyle">@style/Blackbar</item>
但我需要从API级别8及更高版本支持.如果我删除这两行,应用程序在AndroID 2.2上运行正常,黑色半透明 *** 作栏.但是,如果我在AndroID 4.3中运行该应用程序,该应用程序将启动一个纯白色 *** 作栏. halfblack只是一个可绘制文件夹中的png文件,黑色为70%.
解决方法 找到我的问题的解决方案:我必须在res / values-v11中创建单独的styles.xml以支持androID 3.0及更高版本中的相同功能
总结以上是内存溢出为你收集整理的android:windowActionBarOverlay&android:actionBarStyle需要api等级11全部内容,希望文章能够帮你解决android:windowActionBarOverlay&android:actionBarStyle需要api等级11所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)