私は最新の Android Design Support Library を使用しており、ナビゲーション ビューには 2 つのグループがあります。1 つは使用するフラグメント用で、もうandroid:checkableBehavior="single"
1 つは Settings や About where I use などのアクティビティ用android:checkableBehavior="none"
です。
これは、ライブラリのバージョン 23.0.1 までは正常に機能しましたが、現在はcompile 'com.android.support:design:+'
選択時にボタンがチェックされます。
これはライブラリの単なるバグですか、それとも新しいバージョンのために何かを変更する必要がありますか? 変更ログに何も見つかりません。
メニュー:
<group
android:id="@+id/main"
android:checkableBehavior="single">
<item
android:id="@+id/navigation_fragment_1"
android:icon="@drawable/icon"
android:title="@string/fragment_1" />
</group>
<group
android:id="@+id/sub"
android:checkableBehavior="none">
<item
android:id="@+id/navigation_sub_settings"
android:title="@string/settings" />
</group>
</menu>
レイアウト:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<RelativeLayout
android:id="@+id/layout_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/toolbar" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar" />
</RelativeLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer" />
</android.support.v4.widget.DrawerLayout>