gpt4 book ai didi

android - 如何使底部带有阴影的圆角 ImageView

转载 作者:行者123 更新时间:2023-12-05 00:04:42 25 4
gpt4 key购买 nike

我想让我的 ImageView 在底部弯曲并带有阴影效果。

类似于这张图片

enter image description here

但我不知道该怎么做。

每当我在 Google 或 StackOverflow 上搜索时,它都会显示与弯曲角相关的结果,但我希望底部有弯曲边缘。

最佳答案

你可以使用 layer-list 制作形状

例如,

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:left="-150dp"
android:right="-150dp"
android:top="-200dp">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#C72C2F" />
</shape>
</item>
</layer-list>

它是这样显示的。

enter image description here

然后在后台使用它,

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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="match_parent"
tools:context=".MainActivity">

<LinearLayout
app:layout_constraintTop_toTopOf="parent"
android:background="@drawable/round"
android:elevation="30dp"
android:layout_width="match_parent"
android:layout_height="700dp"/>

</androidx.constraintlayout.widget.ConstraintLayout>

它是这样的。

enter image description here

另外为了制作阴影效果,我使用android:elevation来制作阴影,如果你增加值,它可以制作更多的深度。

并且显然为显示图像添加 ImageView 。我相信你能做到。

关于android - 如何使底部带有阴影的圆角 ImageView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62709944/

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