gpt4 book ai didi

android - 如何使工具栏中的箭头颜色为白色

转载 作者:行者123 更新时间:2023-11-29 00:58:43 25 4
gpt4 key购买 nike

我是新开发者。我只是在 Toolbar 中添加了 back arrow 但它是黑色的。怎么让它变白。下面是我的代码:

Java

setSupportActionBar(newToolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);

XML 文件

    <android.support.v7.widget.Toolbar
android:id="@+id/newToolBarId"
android:background="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</android.support.v7.widget.Toolbar>

最佳答案

我通过编辑 styles.xml 解决了这个问题:

<style name="ToolbarColoredBackArrow" parent="AppTheme">
<item name="android:textColorSecondary">#ffffff</item>

...然后在 Activity 中引用工具栏定义中的样式:

<LinearLayout
android:id="@+id/main_parent_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
app:theme="@style/ToolbarColoredBackArrow"
app:popupTheme="@style/AppTheme"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>

关于android - 如何使工具栏中的箭头颜色为白色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52609675/

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