我构建了一个带有片段的应用程序,我有一个带有搜索小部件的ListView。此Listview布局是一个片段的布局。每当我启动应用程序时,SearchWidget顶部都会出现恼人的白色部分,这使得整个布局看起来很奇怪,我似乎无法摆脱它。它低于标题。但也许我做错了,也许这与动作栏有关?我是片段新手,从未使用过动作栏。也许我也错了。是否有可能摆脱它,或者我应该采取不同的做法? http://imgur.com/rzcLztY(布局的图像 - 白色空间是我想要摆脱的)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<fragment
android:id="@+id/listFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginTop="?android:attr/actionBarSize"
android:layout_weight="1.12"
class="org.blabla.ListFragment"
tools:layout="@layout/activity_people_list" >
</fragment>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
tools:context=".PeopleListActivity" >
<SearchView
android:id="@+id/searchView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical" />
<ListView
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</ListView>
</LinearLayout>
答案 0 :(得分:5)
我自己想通了:
android:layout_marginTop="?android:attr/actionBarSize"
消耗了空间。