0

我想实现带有一侧阴影的圆形图像,没有像 [this][1] 这样的边框,我尝试过但没有显示满意的视图,我该如何实现?请大家帮忙解决这个问题

4

1 回答 1

1

要制作圆形 ImageView,请在布局 XML 中添加 CircularImageView 并在项目中添加 CircularImageView 库,或者您也可以通过 Gradle 获取它。

compile 'com.mikhaellopez:circularimageview:3.0.2'

添加到xml布局

<com.mikhaellopez.circularimageview.CircularImageView
    android:layout_width="250dp"
    android:layout_height="250dp"
    android:src="@drawable/image"
    app:civ_border_color="#EEEEEE"
    app:civ_border_width="4dp"
    app:civ_shadow="true"
    app:civ_shadow_radius="10"
    app:civ_shadow_color="#8BC34A"/>

您可以轻松添加阴影。

于 2016-05-14T10:45:44.023 回答