在我的底部導航欄中,我有3個選項。 在底部導航欄默認 shown中,一個選項被選中,另外兩個選擇另一種顏色。我want所有3選項相同的顏色。我能做什麼?如何設置底部導航欄選項相同的顏色?
XML代碼:
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
app:menu="@menu/my_navigation_items"/>
菜單XML(my_navigation_items):
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/action_share"
android:title="@string/menu_share"
android:icon="@drawable/ic_share" />
<item android:id="@+id/action_fav"
android:title="@string/menu_fav"
android:icon="@drawable/ic_unfav" />
<item
android:id="@+id/action_delete"
android:icon="@drawable/ic_delete"
android:title="@string/menu_delete" />
</menu>
Java代碼:
bottomNavigationView.setOnNavigationItemSelectedListener(
new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
switch (item.getItemId()) {
case R.id.action_share:
case R.id.action_fav:
case R.id.action_delete:
}
return true;
}
});
後一些代碼,以更好地幫助 –
您可以粘貼代碼。 –