我将自定义标题栏设置为Relative Layout
。我如何将其添加到主题中?
主题:
<?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>
我是否需要在主题中添加特定类型的内容,还是必须手动将标题栏添加到每个活动中?
答案 0 :(得分:1)
您无法在样式中使用布局。如果您想重复使用某些布局,请考虑使用Fragments
或查看可在XML中使用的<merge>
和<include>
标记:https://docs.python.org/2/library/subprocess.html#frequently-used-arguments