白色部分是我的相对布局,红色部分是我的自定义列表视图
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dim_10"
android:layout_marginRight="@dimen/dim_10"
android:background="@drawable/stripe_sort"
android:layout_marginTop="@dimen/dim_5"
android:layout_marginBottom="-15dp"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/dim_10"
android:text="Categories"
android:textColor="#ff000000"
android:textSize="13sp"
tools:ignore="HardcodedText" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:checked="true"
android:src="@drawable/sort_downarrow"
android:layout_centerVertical="true"
android:padding="@dimen/dim_15"
android:id="@+id/dropDown_categories"/>
</RelativeLayout>
<com.eminosoft.ebookread.util.ExpandableHeightListView
android:layout_width="200dp"
android:layout_height="50dp"
android:layout_marginLeft="@dimen/dim_12"
android:layout_marginRight="@dimen/dim_12"
android:background="#c03f2f"
android:id="@+id/ListView_Sort_categories"
android:visibility="visible"
android:paddingBottom="@dimen/dim_10"
android:divider="@null"
android:layout_gravity="center_horizontal"
/>
在这个我添加负边距到相对布局的底部,我也尝试在我的自定义列表视图中添加负边距但仍然是相同的结果,这两个布局的父级是线性布局
如何让listview在relativelayout下面?
答案 0 :(得分:3)
<RelativeLayout
android:id="@+id/one"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.eminosoft.ebookread.util.ExpandableHeightListView
android:layout_width="200dp"
android:layout_height="50dp"
android:layout_marginLeft="@dimen/dim_12"
android:layout_marginRight="@dimen/dim_12"
android:layout_marginTop="-15dp"
android:layout_below="@+id/partone"
android:background="#c03f2f"
android:id="@+id/ListView_Sort_categories"
android:visibility="visible"
android:paddingBottom="@dimen/dim_10"
android:divider="@null"
android:layout_gravity="center_horizontal"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dim_10"
android:layout_marginRight="@dimen/dim_10"
android:background="@drawable/stripe_sort"
android:layout_marginTop="@dimen/dim_5"
android:id="@+id/partone">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/dim_10"
android:text="Categories"
android:textColor="#ff000000"
android:textSize="13sp"
tools:ignore="HardcodedText" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:checked="true"
android:src="@drawable/sort_downarrow"
android:layout_centerVertical="true"
android:padding="@dimen/dim_15"
android:id="@+id/dropDown_categories"/>
</RelativeLayout>
</RelativeLayout>
您可以尝试使用此代码,基本上我们将您的布局放在另一个相对布局
中