操作栏将菜单图标显示为溢出而不是单个图标

Actionbar is showing menu icons as overflow and not individual icons

发生了什么:

  1. 我在操作栏中有两个图标作为菜单
  2. 我的最小 sdk 是 8,最大是 21
  3. 这些图标显示在下拉列表中,而不是单独的图标
  4. 我使用的主题是Theme.AppCompat.Light.DarkActionBar
  5. 我的 activity 正在扩展 ActionBarActiviy

我想要的:

我想显示为单独的图标

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/icnMenuWalletId"
        android:icon="@drawable/wallet"
        android:showAsAction="ifRoom"
        android:title="WALLET">
    </item>
    <item
        android:id="@+id/icnMenuTwoId"
        android:icon="@drawable/notification"
        android:showAsAction="ifRoom"
        android:title="NOTIFICATIONS">
    </item>

</menu>

Styles.xml

<resources>

    <!--
        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- API 11 theme customizations can go here. -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->


    </style>

     <!-- Application theme. -->
    <style name="AppThemeSplash" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
         <item name="android:windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowContentOverlay">@null</item>

    </style>


</resources>

试试这个并确保您已将包名称 tools:context="com.abc.android.HomeActivityNew" 更改为您的包名称,希望它会有所帮助

<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.abc.android.HomeActivityNew" >

        <item
            android:id="@+id/icnMenuWalletId"
            android:icon="@drawable/wallet"
            android:showAsAction="always"
            android:title="WALLET">
        </item>
        <item
            android:id="@+id/icnMenuTwoId"
            android:icon="@drawable/notification"
            android:showAsAction="always"
            android:title="NOTIFICATIONS">
        </item>

    </menu>

改变

android:showAsAction="ifRoom" 

android:showAsAction="always"

ifRooom 用于在没有 space 容纳的项目时将项目移动到溢出菜单

您必须在 menu.xml 中编辑一行。只需编辑两个菜单项的行

android:showAsAction="always"

通过使用它,android 将始终显示菜单项。如果菜单项不是强制显示在操作栏上,我们通常使用 ifRoom。