1

Im a newbie for android apps development. Im developing an app, in which i need a status bar translucent as Google Now launcher's app has. How to get the clean transparent status bar so that my section image can be viewed in statusbar too...

1 Answers1

1

Put this in your Styles.xml:

<style name="AppTheme" parent="AppTheme.Base">
    <item name="android:windowTranslucentStatus">true</item>
</style>

After that, apply the style to your view by adding it to the activity in your AndroidManifest file.

cdslijngard
  • 196
  • 1
  • 10