我正试图让我的行动栏出现。它确实出现在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>
答案 0 :(得分:1)
ActionBar是在api level 11
中引入的,因此如果您的android:minSdkVersion
小于11,则操作栏将不会显示在Android版本少3.0 i.e api level 11
的设备中。