gpt4 book ai didi

java - 将卡片 View 重叠在图像上

转载 作者:行者123 更新时间:2023-12-01 10:25:18 24 4
gpt4 key购买 nike

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

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

我想在图像上滚动我的卡片 View ,保持图像固定。就像遮蔽图像一样。 enter image description here

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

enter image description here

最佳答案

尝试将您的 CardView 放入 ScrollView 中,并添加 CardViewmarginTop ,它等于您的 >图像的高度。

关于java - 将卡片 View 重叠在图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35383284/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com