2

我正试图让我的操作栏出现。它确实显示在 Android Studio 的视觉外观中,但是当我运行该应用程序时,它不会显示在模拟器或设备中。

这是当前的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:animateLayoutChanges="true">

    <ListView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:id="@+id/listview"
        android:layout_gravity="left|center_vertical" />
</LinearLayout>
4

1 回答 1

1

ActionBar 是在中引入的api level 11,所以如果你android:minSdkVersion小于 11,actionbar 将不会在 android 版本更低的设备中显示3.0 i.e api level 11

于 2013-10-14T05:55:36.580 回答