I had to develop transparent action bar. After some research I was able to achieve the desired result only on LG2 device. When i run the code on LG3 it's not working (action bar not transperent).
That's how my style folder looks:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:itemBackground">@color/black</item>
<item name="android:textColor">@color/white</item>
</style>
<style name="AppTheme.ActionBar.Transparent" parent="AppTheme">
<item name="android:windowContentOverlay">@null</item>
<item name="windowActionBarOverlay">true</item>
<item name="colorPrimary">@android:color/transparent</item>
</style>
</resources>
Someone has a suggestion how to solve this issue ?