gpt4 book ai didi

toolbar - 错误的工具栏背景 (Android)

转载 作者:行者123 更新时间:2023-12-02 04:47:23 25 4
gpt4 key购买 nike

我在我的应用程序中使用工具栏。它应该如下所示: enter image description here

但是,有时候,工具栏背景是错误的!我不知道为什么会这样......

enter image description here

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/toolbar"/>
......

这是我的工具栏:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/id_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>

帮助!有什么想法吗?

设备:
连结 5 (4.4.4)
华为荣耀6(4.4.2)

最佳答案

如果定义了colorPrimary,请检查样式资源文件.

检查您的定义中是否有类似这样的内容非常重要 <item name="android:colorPrimary">@color/actionbar_solid_background</item> .这在以前的 Android 版本 (<21) 中不起作用,因为它以操作系统的 native 资源为目标。如果是这种情况,请删除 android:以支持库使用的资源为目标。

你的风格应该是这样的。

<style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/actionbar_solid_background</item>
<item name="colorPrimaryDark">@color/actionbar_solid_background</item>
</style>

关于toolbar - 错误的工具栏背景 (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31823092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com