Android 通过程序设置bottomNavigationBar 中图标和文本的颜色失败
Android set color of icon and text in bottomNavigationBar by program fails
我创建了一个 xml 文件来控制我的 bottomNavigation 栏,如下所示:
<?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>
当我在我的 activity 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));
但是不行,select和unselect时图标和文字的颜色没有区别,颜色不是我设置的。怎么解决,谢谢。
你应该使用:
bottomNavigationView.setItemTextColor(
AppCompatResources.getColorStateList(this,R.drawable.custom_bottom_navigation_normal));
方法valueOf
:
Returns A ColorStateList
containing a single color. This value cannot be null.
我创建了一个 xml 文件来控制我的 bottomNavigation 栏,如下所示:
<?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>
当我在我的 activity 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));
但是不行,select和unselect时图标和文字的颜色没有区别,颜色不是我设置的。怎么解决,谢谢。
你应该使用:
bottomNavigationView.setItemTextColor(
AppCompatResources.getColorStateList(this,R.drawable.custom_bottom_navigation_normal));
方法valueOf
:
Returns A
ColorStateList
containing a single color. This value cannot be null.