Android阴影布局
Posted 黄毛火烧雪下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android阴影布局相关的知识,希望对你有一定的参考价值。
//阴影效果
api "com.github.lihangleo2:ShadowLayout:2.1.5"
<com.lihang.ShadowLayout
android:id="@+id/sl_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_10"
android:layout_marginTop="@dimen/dp_12"
android:layout_marginEnd="@dimen/dp_10"
android:background="@android:color/white"
app:hl_cornerRadius="@dimen/dp_8"
app:hl_shadowColor="@color/color_shadow_card"
app:hl_topShow="false">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/dp_16"
app:layout_constraintTop_toBottomOf="@id/sl_banner">
</androidx.constraintlayout.widget.ConstraintLayout>
</com.lihang.ShadowLayout>
以上是关于Android阴影布局的主要内容,如果未能解决你的问题,请参考以下文章