我很难在 Android 中添加阴影(一般来说)

问题描述 投票:0回答:1

在这个例子中,我有一个 bottomSheet,里面有一个 fragmentContainer。我的 bottomSheet 在底角有一个半径。我的解决方案是添加一个渐变视图来模拟阴影,但事实证明我可以看到侧面的颜色差异(如图像所示),在这种情况下,由于渐变,颜色会变深。在这种情况下,我最好的解决方案是什么?

这是支持我的 bottomSheet 的代码:

<androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/bottom_sheet_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:behavior_hideable="false"
            app:behavior_peekHeight="30dp"
            app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">

            <View
                android:id="@+id/view_shadow"
                android:layout_width="match_parent"
                android:layout_height="20dp"
                android:background="@drawable/shape_bottomsheet_shadow"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/constraint_stroke"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_marginTop="4dp"
                android:background="@drawable/shape_home_bottomsheet_stroke"
                android:paddingTop="1dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_goneMarginTop="10dp">

                <androidx.fragment.app.FragmentContainerView
                    android:id="@+id/bottom_sheet_fragment_container"
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:background="@drawable/shape_home_bottomsheet_background"
                    app:layout_constraintBottom_toBottomOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent"
                    tools:layout="@layout/fragment_blank" />

            </androidx.constraintlayout.widget.ConstraintLayout>

        </androidx.constraintlayout.widget.ConstraintLayout>

这是我的 shape_bottomsheet_shadow:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners
        android:topRightRadius="16dp"
        android:topLeftRadius="16dp"/>
    <gradient
        android:angle="90"
        android:endColor="@android:color/transparent"
        android:startColor="@color/homepage_bottomsheet_shadow_start" />
</shape>

我已经尝试使用公共图书馆来添加我的阴影,但没有人像我期望的那样工作

android kotlin shapes drawable shadow
1个回答
0
投票

您需要为阴影创建自定义视图并添加视图。

© www.soinside.com 2019 - 2024. All rights reserved.