Android、BottomNavigation:无法将渐变设置为 bottomNavigationvieww 上的背景

Android, BottomNavigation : Cannot set a gradient as a background on a bottomNavigationvieww

我正在尝试将以下渐变 xml 设置为 BottomNavigationView

的背景
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="90"
        android:centerColor="#C6426E"
        android:endColor="#642B73"
        android:startColor="#C2185B"/>
    <solid android:color="#3f5063" />
</shape>

android:background="@drawable/gradient"不工作我如何让它工作

你需要摆脱纯色:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="90"
        android:centerColor="#C6426E"
        android:endColor="#642B73"
        android:startColor="#C2185B"/>
</shape>