我試圖在android.support.v7.widget.Toolbar
的溢出菜單上使用SwitchCompat
小部件,但我無法讓它正常工作,它總是顯示爲空白。我可以在android.support.v7.widget.Toolbar的溢出菜單上使用actionLayout嗎?
這裏是我的菜單定義:
<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="com.oveflowtest.ScrollingActivity">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never"/>
<item android:id="@+id/test"
app:actionLayout="@layout/testlayout"
app:showAsAction="never"/>
</menu>
這裏是testlayout
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.SwitchCompat
android:layout_width="match_parent"
android:layout_height="match_parent" android:text="test"/>
</LinearLayout>
另外,如果我改變showAsAction
到always
,而不是never
則顯示工具欄,但我不就好了我不想在那裏,我想要在按下3個點的時候打開的溢出菜單。
我知道有一個選項可以使用複選標記,但是我正在跟蹤要求切換的設計。
謝謝。