我创建了一个 xml 文件来控制我的底部导航栏,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_checked="true"
android:color="@color/bottomNavigationBarCheckedNormal" />
<item
android:state_pressed="true"
android:color="@color/bottomNavigationBarCheckedNormal" />
<item
android:color="@color/bottomNavigationBarUncheckedNormal" />
</selector>
当我在我的活动 xml 文件中设置它时它是有效的,如下所示:
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/activity_news_bottom_navigation"
android:layout_width="match_parent"
android:layout_height="50dp"
app:menu="@menu/bottom_navigation_menu"
app:itemIconTint="@drawable/custom_bottom_navigation_normal"
app:itemTextColor="@drawable/custom_bottom_navigation_normal"
app:labelVisibilityMode="labeled" />
但我想通过程序来改变它,所以我尝试使用它:
bottomNavigationView.setBackgroundColor(Color.parseColor(AppColor.bottomNavigationBarBackgroundColor));
bottomNavigationView.setItemIconTintList(ColorStateList.valueOf(R.drawable.custom_bottom_navigation_normal));
bottomNavigationView.setItemTextColor(ColorStateList.valueOf(R.drawable.custom_bottom_navigation_normal));
但它不起作用,选择和取消选择时图标和文本颜色没有不同,并且颜色不是我设置的。我该如何解决它,谢谢。