找不到与给定名称匹配的资源:attr' android:windowTranslucentNavigation'

时间:2014-06-07 15:40:25

标签: android android-4.4-kitkat navigationbar

我试图在4.4的设备上使Navigation Bar透明。但是,SDK找不到该资源。

这是res/values-v19/styles.xml档案:

<resources xmlns:android="http://schemas.android.com/apk/res/android">

    <style name="Theme.Myactionbar" parent="@android:style/Theme.Holo.Light">
       <item name="android:windowTranslucentStatus">true</item>
       <item name="android:windowTranslucentNavigation">true</item>
    </style>

</resources>

以下是已安装软件包的图片:

enter image description here

在Manifest中我有:

 <uses-sdk
    android:minSdkVersion="16"
    android:targetSdkVersion="19" />

我也尝试过多次清理和构建项目,但没有任何反应。

由于

1 个答案:

答案 0 :(得分:6)

您是否也将项目的构建目标更改为Android 4.4.2?

project.properties文件中,或:

enter image description here