使Honeycomb ActionBar与ICS兼容

时间:2011-12-01 06:19:10

标签: android android-3.0-honeycomb android-4.0-ice-cream-sandwich

我有一个现有的应用程序,它在操作栏中有几个标签,按钮。我想把它移植到ICS,我关心的是这些物品将如何在ICS设备上堆叠?

将所有showAsAction="ifRoom|withText"隐藏到菜单中吗?或者它会像ICS gmail应用程序那样在底部创建一个新的操作栏。 enter image description here

1 个答案:

答案 0 :(得分:3)

操作将叠加在顶部,如果空间不足则隐藏。 如果您拆分操作栏,那么他们将来到底部 您必须配置Application标记以将其配置为拆分

  <application android:label="@string/app_name"
    android:icon="@drawable/icon"
    android:logo="@drawable/logo"
    android:theme="@style/AppTheme.Light"
    android:hardwareAccelerated="true"
    android:debuggable="true" android:uiOptions="splitActionBarWhenNarrow">