在图像上重叠cardview

时间:2016-02-13 17:54:00

标签: java android

我是Android编程的新手,我试图在图像上滑动我的视图。这是我的代码(不确定这是不是正确的方法)

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ron"
    android:scaleType="fitCenter"/>

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:id="@+id/cv">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="16dp"
        >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/person_photo"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginRight="16dp"
            />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/person_name"
            android:layout_toRightOf="@+id/person_photo"
            android:layout_alignParentTop="true"
            android:textSize="30sp"
            />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/person_age"
            android:layout_toRightOf="@+id/person_photo"
            android:layout_below="@+id/person_name"
            />

    </RelativeLayout>

</android.support.v7.widget.CardView>

我想将我的cardview滚动到图像保持图像固定。像是遮住图像。 enter image description here

完全滚动后,图像应该被隐藏。(我不希望它在工具栏下流动)

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试将CardView放入ScrollView并添加CardView marginTop,其等于Image的高度