BottomNavigationView
新しいサポート ライブラリ 25.0.0 から利用できるものを実装しました。これがそのための私のコードです
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@drawable/text"
app:itemTextColor="@drawable/text"
app:menu="@menu/bottom_navigation_main" />
そしてtext.xml
描画可能
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@android:color/white" android:state_enabled="true" />
<item android:color="@color/colorPrimaryDark" android:state_enabled="false" />
</selector>
このコードを使用すると、メニュー項目がクリックされたときにテキストの色を変更できますが、同じことを適用するとapp:itemBackground
エラーが表示されます<item> tag requires a 'drawable' attribute or child tag defining a drawable
。
これは私が試したものですapp:itemBackground
app:itemBackground="@drawable/text"
私の質問は、選択したメニュー項目の背景色を変更するにはどうすればよいですか?