2

I'm trying to make the Navigation Bar transparent on devices with 4.4. However, the SDK does not find the resource.

Here is res/values-v19/styles.xml file:

<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>

Here is an image with the installed packages:

enter image description here

In the Manifest I have:

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

I also have tried to Clean and Build the project several times, but nothing happens.

Thanks

Luis Lavieri
  • 4,064
  • 6
  • 39
  • 69

1 Answers1

6

Did you also change the project's build target to Android 4.4.2?

In project.properties file, or:

enter image description here

matiash
  • 54,791
  • 16
  • 125
  • 154