在android中的其他底部的粘滞图像

时间:2016-08-19 11:47:22

标签: android-xml cardview

我不知道这个功能的正确名称,这里是更好地理解我的问题的图像。

enter image description here

需要在另一个图片的边框底部创建图像布局,就像个人资料图片位于大图片的底部一样。

我正在使用包含这2张图片的CardView。 我的代码:

 <android.support.v7.widget.CardView
            android:id="@+id/cardview"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:elevation="100dp"
            card_view:cardCornerRadius="8dp"
            card_view:useCompatPadding="true"
            card_view:cardPreventCornerOverlap="false"
            >
                <ImageView
                   android:layout_width="match_parent"
                   android:layout_height="wrap_content"
                   android:src="@drawable/bigImage"
                   />
                <ImageView
                   android:layout_width="10dp"
                   android:layout_height="10dp"
                   android:src="@drawable/smallImage"
                   />
        </android.support.v7.widget.CardView>

任何人都可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

这可以做你想要的,使用固定高度的图像,或以编程方式计算。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <RelativeLayout
            android:id="@+id/layoutTop"
            android:layout_width="match_parent"
            android:layout_height="200dp" >
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/layoutBottom"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_alignParentBottom="true"
            android:layout_below="@id/layoutTop" >
        </RelativeLayout>

        <ImageView
            android:id="@+id/overlapImage"
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:layout_above="@id/layoutBottom"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="-20dp" <!-- This should be always half the height, can also be calculated and added programtically -->
            android:adjustViewBounds="true"
            android:src="@drawable/ic_launcher" />

    </RelativeLayout>