1

ツールバーに switchcompat を追加しようとしていますが、メニュー項目はカスタム レイアウトを参照しています

toolbar_switch.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_marginRight="8dp"
android:layout_height="match_parent">

<android.support.v7.widget.SwitchCompat
    android:layout_width="wrap_content"
    app:showText="false"
    android:id="@+id/switch_online"
    android:layout_centerInParent="true"
    android:layout_height="wrap_content" />

</RelativeLayout>

menu_main_activity.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/menu_toggle"
    android:actionLayout="@layout/toolbar_switch"
    app:showAsAction="always"
    android:title="" />
</menu>

メニュー項目を画像またはテキストに設定すると、アクティビティでメニューが正常に膨らみますが、カスタム レイアウトをポイントすると表示されません。

    setSupportActionBar(toolbar);
    actionBar = getSupportActionBar();
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    toolbar.setOnMenuItemClickListener(this);

    switchOnline = (SwitchCompat)toolbar.findViewById(R.id.switch_online);

私のアプリのテーマは AppCompat に基づいています

4

1 に答える 1