【发布时间】:2012-03-06 18:00:37
【问题描述】:
我们为 2.1 版开发了一个 android 应用,但客户要求它也应该在 3.0 上运行。一切似乎都很好,但我的系统栏有问题。它将菜单按钮隐藏为http://i.imgur.com/NEkkg.png
我该怎么办?
提前致谢。 编辑:这是布局文件:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/imageandsoundroot"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<View
android:id="@+id/imageandsoundcontextmenutrigger"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone" />
<ImageView
android:id="@+id/imageandsoundimage"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter" />
</FrameLayout>
【问题讨论】:
标签: android android-layout android-3.0-honeycomb