如何在Android操作栏开关中获取/设置操作事件

2023-12-08

我找到了这个帖子如何给android操作栏添加开关?这对我有用。但我无法获取它的事件。我正在使用 appcompat,并且我对 actionLayout 和 showAsAction 使用了应用程序命名空间,但我无法处理其对 onOptionsItemSelected 方法的单击?我的应用程序在启动时崩溃。如何处理它或者这段代码有什么问题? 这是我的代码

菜单_main.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      tools:context=".MainActivity">
<item
    android:id="@+id/myswitch"
    android:title=""
    app:showAsAction="always"
    app:actionLayout="@layout/switch_layout"/>

switch_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <Switch
        android:id="@+id/switchForActionBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true" />

</RelativeLayout>
@Override
        public boolean onCreateOptionsMenu(Menu menu) {
           getMenuInflater().inflate(R.menu.your_menu, menu);

         MenuItem menuItem= menu.findItem(R.id.myswitch);
         Switch switcha = (Switch)menuItem.findViewById(R.id.switchForActionBar);
    switcha.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            // do anything here on check changed 
        }
    });
    return super.onCreateOptionsMenu(menu);
        }

and

@Override
public boolean onOptionsItemSelected(MenuItem item) {

    int id = item.getItemId();

   if (id == R.id.myswitch) {
       //do something
    }


    return super.onOptionsItemSelected(item);
}

非常感谢任何帮助。提前致谢。


我发现了我的错误。我必须使用

视图视图 = MenuItemCompat.getActionView(menuItem);

onCreateOptionsMenu 中额外的一行来查找切换按钮 。这是我的完整方法

public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);

        MenuItem menuItem = menu.findItem(R.id.myswitch);
        View view = MenuItemCompat.getActionView(menuItem);
        Switch switcha = (Switch) view.findViewById(R.id.switchForActionBar);
        switcha.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                // do anything here on check changed 
            }
        });
        return super.onCreateOptionsMenu(menu);
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何在Android操作栏开关中获取/设置操作事件 的相关文章

随机推荐