6

我正在尝试使用 ABS 将我的应用程序重新设计为 ICS 外观和感觉。获取 ActionBar 本身非常简单明了,但添加菜单项却并非如此。

我的代码如下所示:

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        super.onCreateOptionsMenu(menu);
        MenuInflater inflater = getSupportMenuInflater();
        inflater.inflate(R.menu.menu, menu);
        return true;
    }

正在使用所有适当的导入。

而我的 menu.xml 如下:

<?xml version="1.0" encoding="utf-8"?>
<menu
  xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:id="@+id/backup" android:title="@string/backupLabel"/>
  <item android:id="@+id/restore" android:title="@string/restoreLabel"/>
</menu>

ActionBar 显示,但菜单表现为 2.1 菜单 - 仅从菜单按钮激活,没有可用溢出。在 ICS 模拟器上也是如此——我必须使用菜单按钮来激活菜单。

如果我添加 android:showAsAction="ifRoom" 那么这些项目会显示为操作项目 - 但不会出现在溢出中,这是我希望它们始终存在的地方。

这一切有意义吗?

我错过了什么?

4

3 回答 3

4

只需在 ActionBar 上使用此代码船菜单:

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

    <item
        android:id="@+id/backup"
        android:showAsAction="ifRoom"
        android:title="backupLabel"/>
    <item
        android:id="@+id/restore"
        android:showAsAction="ifRoom"
        android:title="restoreLabel"/>
</menu> 

它的样子:

在此处输入图像描述

因为如果你使用

android:showAsAction="ifRoom" : Only place this item in the Action Bar if there is room for it.

android:showAsAction="Never" : Never place this item in the Action Bar.

如果你像这样使用:

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

        <item
            android:id="@+id/backup"
            android:showAsAction="ifRoom"
            android:title="backupLabel"/>
        <item
            android:id="@+id/restore"
            android:title="restoreLabel"/>
    </menu> 

然后它的外观:一个在 ActionBar 上,第二个在您按下菜单按钮时打开。

在此处输入图像描述

注意:它在 < 3.0 Android 操作系统中运行良好,所以不用担心。但是,如果您有多个菜单项(超过 3 个),android:showAsAction="ifRoom"那么它会显示您取决于设备屏幕尺寸

在 Protrait 中:

在此处输入图像描述

在风景:

在此处输入图像描述


完成以上所有操作后,我会建议您在 < 3.0 Android 操作系统中使用以下方式:

在此处输入图像描述

代码:

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

    <item
        android:id="@+id/file"
        android:showAsAction="ifRoom"
        android:title="file">

        <!-- "file" submenu -->
        <menu>
            <item
                android:id="@+id/create_new"
                android:title="create_new"/>
            <item
                android:id="@+id/open"
                android:title="open"/>
        </menu>
    </item>

</menu>
于 2013-04-05T11:06:36.177 回答
1

ForceOverflow已在 ABS 4.1.2 中删除,创建者认为它不应该进入(请参阅更改日志注释)。我非常有信心您看到了预期的行为;任何带有运行 ICS+ 的菜单按钮的设备(例如我的 Nexus S)都不会显示溢出菜单,因为有一个专用的硬件键 - “菜单”按钮。

使用模拟器配置从模拟设备中删除菜单按钮,Android 将知道添加溢出菜单。

于 2013-04-05T10:20:03.970 回答
0

您可能使用的是启用了硬件键盘而不是软件的模拟器。要查看溢出菜单中的操作,请使用带有软水控件的模拟器。屏幕截图显示了两种方法。

  • 编辑现有的 AVD

编辑现有的 AVD.

  • 克隆现有的设备配置文件

克隆现有的设备配置文件.

于 2013-04-05T10:07:26.617 回答