线性布局负边距,需要一个布局高于另一个

时间:2016-11-29 07:25:44

标签: android android-layout margins

我在给出负余量See this pic

的同时遇到了这个问题 在给出负边距后,我希望红色部分位于白色部分下方,以获得红色框顶部的类别阴影,但是当你看到红色框出现在顶部时

白色部分是我的相对布局,红色部分是我的自定义列表视图

    <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下面?

1 个答案:

答案 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>

您可以尝试使用此代码,基本上我们将您的布局放在另一个相对布局