我有一個菜單項,帶有圖標和文本。我正在使用Appcompat v7庫。菜單項不顯示文本,即使showAsAction設置爲withText | always或反之亦然。appcompat v7 23 - 帶app的菜單項:showAsAction =「withText | always」不顯示標題
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">
<item
android:id="@+id/action_next"
android:icon="@drawable/ic_action_registration_next"
android:orderInCategory="0"
android:title="Next"
app:showAsAction="always" />
</menu>
我嘗試了這些組合的showAsAction。
always|withText
withText|always
ifRoom|withText
工具欄只顯示圖標,但不顯示標題。我如何顯示標題和圖標?請看下圖:
讓我知道你需要什麼。
我相信它是文本或帶有菜單xml的圖標。如果你同時需要,你需要工具欄中的自定義佈局 –
@ cricket_007,謝謝你的信息。 –