其他分享
首页 > 其他分享> > 我的Android学习速记 (2) 给View加个阴影

我的Android学习速记 (2) 给View加个阴影

作者:互联网

嗯~ 仅做片段速记。

给View加个阴影

用最简单的方法 使用 android:elevation 属性设置此视图的基本高程

无阴影,有边框:

有阴影,无边框

设置方法:在控件或布局中设置

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_marginStart="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginEnd="10dp"
    android:layout_marginBottom="10dp"
    android:background="@drawable/lst1_backgroup"
    android:elevation="5dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:ignore="MissingConstraints">

值得注意,如果没有设置 backgroup属性,可能不会有阴影效果。可以增加android:outlineProvider="bounds"属性来解决。

标签:属性,速记,设置,Android,阴影,android,View
来源: https://blog.csdn.net/sedjamm/article/details/123141938