'setOnCheckedChangeListener'イベントを設定できるように、私のactionLayout(メニュー項目)からスイッチを取得する方法を教えてください。ここでAndroidナビゲーション・ドロワーのActionLayoutからスイッチを取得する
はナビゲーションドロワーのための私のメニューです:action_view_switchのactionlayoutで
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/nav_switch"
app:actionLayout="@layout/action_view_switch"
android:title="One-to-one mode" />
</menu>
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">
<Switch
android:id="@+id/otoSwitch"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
そして最後に、私のナビゲーション引き出し:私は理解して
<android.support.design.widget.NavigationView
android:id="@+id/nvView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
app:menu="@menu/drawer_view"
app:headerLayout="@layout/nav_header"/>
私は次のようなことをすることができます:
Menu menu = navigationView.getMenu();
MenuItem menuItem = menu.findItem(R.id.nav_switch);
View actionView = MenuItemCompat.getActionView(menuItem);
actionView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
しかし、これは「setOnCheckedChangeListener」のようなisCheckedのような状態を私に与えません。リスナを設定できるように、スイッチビューを取得するにはどうすればよいですか?
あなたはほぼそこにいます - スイッチotoSwitch =(スイッチ)menuItem.getActionView()。findViewById(R.id.otoSwitch); '。 –