Android在导航抽屉上从ActionLayout获取切换

时间:2016-08-19 16:06:21

标签: java android

如何从我的actionLayout(这是一个菜单项)专门获取切换,以便我可以设置' setOnCheckedChangeListener'事件

这是导航抽屉的菜单:

<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>

使用action_view_switch actionlayout:

<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) {

  }
});

但这并没有给我任何像isChecked这样的状态,比如&#39; setOnCheckedChangeListener&#39;将。如何获取切换视图以便设置其监听器?

1 个答案:

答案 0 :(得分:5)

你几乎已经弄明白了,还有一些东西。这对我有用!

<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"
    />

接下来,您将从菜单项中获取视图。

Menu menu = navigationView.getMenu();
SwitchCompat actionView = (SwitchCompat) menu.findItem(R.id.nav_switch).getActionView().findViewById(R.id.ontoSwitch);
actionView.setOnClickListener(new View.OnClickListener() {
  @Override
  public void onClick(View v) {

  }
});

我在getActionView之后有另一个findViewById的原因是因为getActionView将返回一个LinearLayout视图而我们的开关位于LinearLayout内部所以我们只是从当前的LinearLayout中找到返回给我们的视图id,因此findItem(R.id。 nav_switch).getActionView()。findView ...希望这会有所帮助