gpt4 book ai didi

java - 如何为 View 创建自定义阴影?

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

我想为 View 创建自定义阴影,我按照我的计划进行自定义。

自定义阴影看起来像卡片 View 立面。 enter image description here

我需要这种类型的阴影

最佳答案

嗯。这个非常简单,并且产生与您所要求的非常相似(imo)的结果。显然,像标高、角半径等参数可以/应该调整。

<?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:padding="16dp"
android:layout_height="match_parent"
tools:context=".FirstFragment">

<androidx.cardview.widget.CardView
android:id="@+id/textview_first"
android:layout_width="300dp"
android:layout_height="100dp"
app:cardCornerRadius="20dp"
app:cardElevation="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

enter image description here

关于java - 如何为 View 创建自定义阴影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62151737/

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