1.通过设置背景图 background
? <ImageView ? ? ? ? ? ? ? ? ? ? ? ? android:id="@+id/img_cover" ? ? ? ? ? ? ? ? ? ? ? ? android:layout_width="match_parent" ? ? ? ? ? ? ? ? ? ? ? ? android:layout_height="match_parent" ? ? ? ? ? ? ? ? ? ? ? ? android:background="@drawable/borderborder" ? ? ? ? ? ? ? ? ? ? ? ? android:scaleType="fitXY" ? ? ? ? ? ? ? ? ? ? ? ? android:src="@mipmap/tab_test" />
borderborder
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> ? ? <item> ? ? ? ? <shape android:shape="rectangle"> ? ? ? ? ? ? <padding ? ? ? ? ? ? ? ? android:bottom="1dp" ? ? ? ? ? ? ? ? android:left="1dp" ? ? ? ? ? ? ? ? android:right="1dp" ? ? ? ? ? ? ? ? android:top="1dp" /> ? ? ? ? ? ? <solid android:color="#0DCCCCCC" /> ? ? ? ? ? ? <corners android:radius="8dp" /> ? ? ? ? </shape> ? ? </item> ? ? <item> ? ? ? ? <shape android:shape="rectangle"> ? ? ? ? ? ? <padding ? ? ? ? ? ? ? ? android:bottom="1dp" ? ? ? ? ? ? ? ? android:left="1dp" ? ? ? ? ? ? ? ? android:right="1dp" ? ? ? ? ? ? ? ? android:top="1dp" /> ? ? ? ? ? ? <solid android:color="#10CCCCCC" /> ? ? ? ? ? ? <corners android:radius="8dp" /> ? ? ? ? </shape> ? ? </item> ? ? <item> ? ? ? ? <shape android:shape="rectangle"> ? ? ? ? ? ? <padding ? ? ? ? ? ? ? ? android:bottom="1dp" ? ? ? ? ? ? ? ? android:left="1dp" ? ? ? ? ? ? ? ? android:right="1dp" ? ? ? ? ? ? ? ? android:top="1dp" /> ? ? ? ? ? ? <solid android:color="#15CCCCCC" /> ? ? ? ? ? ? <corners android:radius="8dp" /> ? ? ? ? </shape> ? ? </item> ? ? <item> ? ? ? ? <shape android:shape="rectangle"> ? ? ? ? ? ? <padding ? ? ? ? ? ? ? ? android:bottom="1dp" ? ? ? ? ? ? ? ? android:left="1dp" ? ? ? ? ? ? ? ? android:right="1dp" ? ? ? ? ? ? ? ? android:top="1dp" /> ? ? ? ? ? ? <solid android:color="#20CCCCCC" /> ? ? ? ? ? ? <corners android:radius="8dp" /> ? ? ? ? </shape> ? ? </item> ? ? <item> ? ? ? ? <shape android:shape="rectangle"> ? ? ? ? ? ? <padding ? ? ? ? ? ? ? ? android:bottom="1dp" ? ? ? ? ? ? ? ? android:left="1dp" ? ? ? ? ? ? ? ? android:right="1dp" ? ? ? ? ? ? ? ? android:top="1dp" /> ? ? ? ? ? ? <solid android:color="#30CCCCCC" /> ? ? ? ? ? ? <corners android:radius="8dp" /> ? ? ? ? </shape> ? ? </item> ? ? <item> ? ? ? ? <shape> ? ? ? ? ? ? <solid android:color="#ffFFFF" /> ? ? ? ? ? ? <corners android:radius="6dp" /> ? ? ? ? </shape> ? ? </item> </layer-list> ?
2.通过cardView包裹
?<androidx.cardview.widget.CardView ? ? ? ? ? ? ? ? ? ? android:id="@+id/img_cover_cardview" ? ? ? ? ? ? ? ? ? ? android:layout_width="141dp" ? ? ? ? ? ? ? ? ? ? android:layout_height="162dp" ? ? ? ? ? ? ? ? ? ? app:cardCornerRadius="4dp" ? ? ? ? ? ? ? ? ? ? app:cardElevation="3dp" ? ? ? ? ? ? ? ? ? ? app:cardUseCompatPadding="true">
这里放你需要添加阴影的控件
</androidx.cardview.widget.CardView>
|