如何在线性布局的底部添加阴影

时间:2018-09-07 10:28:32

标签: android android-layout android-xml

我想在线性布局的底部添加阴影。

基本上,此线性布局是我的布局的自定义标题栏。

它包含我的布局的标题和图标。我想将阴影添加到布局的底部。有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

您可以使用Cardview和gve高程。     它会给你阴影效果。

 `<android.support.v7.widget.CardView 
   xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:cardCornerRadius="@dimen/margin4"
    android:elevation="@dimen/margin8"
    android:layout_margin="@dimen/margin4"
    app:cardUseCompatPadding="false">

    <ImageView
        android:id="@+id/zoomImageview"
        android:layout_width="150dp"
        android:scaleType="centerInside"
        android:layout_height="100dp" />
</android.support.v7.widget.CardView>`