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...
Asked
Active
Viewed 139 times
1
-
1Sorry its not about appbar its about statusbar. thanks for cdslijngard for answering. Now, It works. – Karthik Kakarla Feb 07 '16 at 09:21
1 Answers
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