我在菜单项中添加了开关并尝试访问其已检查状态。但我无法访问其已检查状态。任何人都可以帮助我。
这是我的menu_crime.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">
<item
android:id="@+id/crime_toggle"
android:title="Crime"
android:enabled="true"
app:showAsAction="always"
app:actionLayout="@layout/toolbar_crime_toggle" />
</menu>
这是我的toolbar_crime_toggle.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<android.support.v7.widget.SwitchCompat
android:id="@+id/crime_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:theme="@style/SCBSwitch"
android:padding="10dp"
android:text="Crime"
android:switchPadding="50dp"/>
</RelativeLayout>
我尝试在onCreat()中访问其检查状态,如下所示
mSwitchShowSecure = (SwitchCompat) menu.findItem(R.id.crime_toggle).getActionView().findViewById(R.id.crime_switch);
mSwitchShowSecure.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Log.d("ischecked", String.valueOf(isChecked));
}
});
答案 0 :(得分:0)
您可以使用 switchCompat.isChecked()方法在任何地方找到SwitchCompat的已检查状态。
如果它提供 true ,则表示开关 ,否则关闭。