在Android中为主题添加标题栏

时间:2018-03-11 00:31:29

标签: android android-theme android-titlebar

我将自定义标题栏设置为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>

我是否需要在主题中添加特定类型的内容,还是必须手动将标题栏添加到每个活动中?

1 个答案:

答案 0 :(得分:1)

您无法在样式中使用布局。如果您想重复使用某些布局,请考虑使用Fragments或查看可在XML中使用的<merge><include>标记:https://docs.python.org/2/library/subprocess.html#frequently-used-arguments