gpt4 book ai didi

android - 具有重叠 View 的 RelativeLayout

转载 作者:行者123 更新时间:2023-11-29 02:23:12 26 4
gpt4 key购买 nike

我需要创建如下图所示的 UI 设计。我使用了 RelativeLayout,但顶部的 view 隐藏在 CardView 后面。试了很多方法,还是不行。

enter image description here

这是我的代码:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="150dp"
tools:context=".activity.LoginActivity">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="150dp"
android:elevation="4dp"
android:layout_margin="10dp"
>
</android.support.v7.widget.CardView>

<FrameLayout
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginStart="20dp"
android:layout_marginLeft="20dp"
android:background="@drawable/square_items">


<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/ic_aboutus"/>

</FrameLayout>

</RelativeLayout>

最佳答案

您需要将 ImageView 放在 Cardview 中,以便两者的高度相等。试试这个

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

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="10dp"
android:layout_marginBottom="10dp"
android:elevation="4dp"
android:padding="10dp"
app:cardCornerRadius="6dp">


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

<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp">

<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@color/red" />


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

</RelativeLayout>

</RelativeLayout>

关于android - 具有重叠 View 的 RelativeLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53912583/

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