2

我有一个放在我的 ActionBar 中的 Switch,但它似乎没有出现,我不明白为什么。这是我的尝试:

create_post_menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".CreatePost">

    <item
        android:id="@+id/toggle_test"
        android:title=""
        app:showAsAction="ifRoom"
        android:orderInCategory="1"
        android:actionViewClass="android.widget.Switch" />

    <item
        android:id="@+id/send_post"
        android:orderInCategory="2"
        android:title="Send"
        app:showAsAction="ifRoom" />

</menu>

CreatePost.java

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.create_post_menu, menu);
    // Get the action view used in your toggleservice item
    final MenuItem toggleservice = menu.findItem(R.id.toggle_test);
    final Switch actionView = (Switch) toggleservice.getActionView();
    actionView.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            // Start or stop your Service
        }
    });
    return super.onCreateOptionsMenu(menu);
}

我尝试实例化 Switch 以查看是否可以设置侦听器以查看您是否单击了开关,但我似乎无法实例化它,因为尝试actionView在 CreatePost.java 中创建变量时出错。谁能帮我这个?谢谢!

4

1 回答 1

2

您收到错误,因为您的 actionView 为空。更改您的 Switch 菜单代码

<item
     android:id="@+id/toggle_test"
     android:title=""
     app:showAsAction="ifRoom"
     android:orderInCategory="1"
     android:actionViewClass="android.widget.Switch" /> 

app:actionViewClass="android.widget.Switch"仔细看不会是这样appandroid……

<item
      android:id="@+id/toggle_test"
      android:title=""
      app:showAsAction="ifRoom"
      android:orderInCategory="1"
      app:actionViewClass="android.widget.Switch" /> 

现在像这样改变你的java代码

final MenuItem toggleservice = menu.findItem(R.id.toggle_test);
Switch actionView=(Switch) MenuItemCompat.getActionView(toggleservice );
actionView.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

    @Override
    public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
        // Start or stop your Service
    }
});
于 2016-01-03T05:12:25.580 回答