我有一个活动,我有一个列表视图。在列表视图的顶部,我包括另一个布局活动,其中包含两个用于过滤列表视图的微调器。但是,如果我包含过滤器,则列表视图不起作用。它没有人满为患。如果我删除它,列表视图将被填充。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include android:id="@+id/filter" layout="@layout/activity_expense_list_filter" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_below="@id/filter"
android:layout_marginTop="23dp"
android:drawSelectorOnTop="false">
</ListView>
</RelativeLayout>
如果我删除过滤器视图,则列表视图按预期工作。任何想法我如何解决这个问题