I have a custom title bar set up as a Relative Layout
. How would I add it to a theme?
Theme:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomWindowTitleBarBG">
<item name="android:background">#323331</item>
</style>
<style name="TitleBarTheme" parent="android:Theme.DeviceDefault.Light.NoActionBar">
<item name="android:windowTitleSize">60dip</item>
<item name="android:windowTitleBackgroundStyle">
@style/CustomWindowTitleBarBG</item>
</style>
</resources>
Is there a specific kind of thing I have to add to the theme or do I have to manually add the title bar to every single activity?