gpt4 book ai didi

Android:工具栏文本显示为黑色而不是白色

转载 作者:可可西里 更新时间:2023-11-01 18:51:36 27 4
gpt4 key购买 nike

我的工具栏文本、后退箭头和所有内容都是黑色的,但我希望它是白色的
我怎样才能实现它?
我的 styles.xml 如下所示:

<resources>

<style name="AppTheme" parent="MyMaterialTheme.Base">

</style>

<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowBackground">@color/windowBackground</item>
<item name="android:textColor">@color/textColorPrimary</item>
<item name="android:textStyle">normal</item>



</style>


</resources>

Android list fragment :

 <application
android:allowBackup="true"
android:icon="@mipmap/hello"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

最佳答案

为您的工具栏定义样式:

<style name="AppToolbar" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textColorSecondary">@android:color/white</item>
</style>

将它设置到您的工具栏:

    <android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways"
android:theme="@style/AppToolbar"
android:minHeight="?attr/actionBarSize"/>

关于Android:工具栏文本显示为黑色而不是白色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32794575/

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