我的活动和操作栏中有一个列表视图,用于将活动设置为透明和向上导航。结果显示正常,但第一项显示在actionBAR下方。如下图所示:
以下是我用来使条形透明的代码:
getWindow().requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
ActionBar actionBar = getActionBar();
actionBar.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
actionBar.setStackedBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
getActionBar().setDisplayHomeAsUpEnabled(true);
getActionBar().setDisplayShowHomeEnabled(false);
setContentView(R.layout.invite_friends);
invite_friends.XML for listView:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bluebackground"
android:orientation="vertical" >
<ListView
android:id="@+id/person_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="#b5b5b5"
android:dividerHeight="1dp"
android:listSelector="@drawable/list_selector" />
</LinearLayout>
令人惊讶的是listview认为它是全屏的?如何解决这个问题?
谢谢!
答案 0 :(得分:5)
问题在于:
getWindow().requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
您告诉ActionBar
处于叠加模式,这意味着它将覆盖内容而不是位于其上方的固定位置。如果您想在应用中动态隐藏和显示ActionBar
,这非常有用,但不要求ActionBar
透明。只需删除它,它应该按预期工作。
如果您想要或需要ActionBar
覆盖模式,则只需在Activity
中的内容中应用填充,该内容等于ActionBar
高度。像这样:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?android:attr/actionBarSize">
...
</RelativeLayout>
如果您使用支持库,则必须使用?attr/actionBarSize
?android:attr/actionBarSize
这样的内容:
<!-- Support library compatibility -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize">
...
</RelativeLayout>