gpt4 book ai didi

android - 如何更改工具栏选项背景的颜色

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:16 24 4
gpt4 key购买 nike

我想更改工具栏中选项的浅色背景以及尝试复制某些内容时出现的部分。现在真的很糟糕:

enter image description here

这是我的 styles.xml :

<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="windowNoTitle">true</item>
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="android:textColorPrimary">@color/primary_text</item>
<item name="android:textColorSecondary">@color/secondary_text</item>

</style>

<!-- Application theme. -->
<style name="MyTheme" parent="MyTheme.Base">
</style>

<style name="MyTheme.ToolBar" parent="MyTheme.Base">
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textColorSecondary">@android:color/white</item>
</style>

<style name="MyTheme.NavMenu" parent="MyTheme.Base">
<item name="android:textColorPrimary">@color/gray</item>
</style>

<style name="MyTheme.RightMenu" parent="MyTheme.Base">
<item name="android:textColorPrimary">@color/black</item>
</style>
</resources>

您可能已经注意到,我使用的是 NoActionBar,因为我使用的是工具栏。它在我的 main.xml 上:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<!-- your content layout -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Toolbar instead of ActionBar so the drawer can slide on top -->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
app:theme="@style/MyTheme.ToolBar"
android:layout_width="match_parent"
android:layout_height="@dimen/abc_action_bar_default_height_material"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize" />
<!-- Real content goes here -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:id="@+id/nav_view"
app:headerLayout="@layout/nav_view_header"
app:menu="@layout/nav_view_menu"
app:theme="@style/MyTheme.NavMenu" />
</android.support.v4.widget.DrawerLayout>

最佳答案

在您的工具栏中试试这个:

app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

AppCompat ToolBar popupTheme not used in the ShareAction MenuItem

这里是 AppBarLayout:

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbarmain"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/ColorPrimary"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

也看看这个:

app:popupTheme="@style/ThemeOverlay.AppCompat.Light"

关于android - 如何更改工具栏选项背景的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34824817/

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