圆形图像视图未显示

时间:2020-05-12 13:41:07

标签: android gradle

<de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/image_view"
        android:layout_width="70dp"
        android:layout_height="70dp"
        android:background="@color/colorPrimary" />

添加并同步了以下代码:

implementation 'de.hdodenhof:circleimageview:3.1.0'

请参阅下图以解决问题。 https://drive.google.com/open?id=17yYcUBQFQr0NiykBtEfCISBI4fMWT1vM

2 个答案:

答案 0 :(得分:0)

您应该使用CircleImageView

implementation 'de.hdodenhof:circleimageview:3.1.0'

XML

<de.hdodenhof.circleimageview.CircleImageView
    android:layout_width="70dp"
    android:layout_height="70dp"
    android:src="@drawable/add_icon"
    app:civ_border_width="1dp"
    app:civ_border_color="#FF000000"/>

答案 1 :(得分:0)

将此添加到您的gradle中

 dependencies {
      ...
      implementation 'de.hdodenhof:circleimageview:3.1.0'
  }

xml就像

<de.hdodenhof.circleimageview.CircleImageView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/profile_image"
    android:layout_width="96dp"
    android:layout_height="96dp"[![enter image description here][1]][1]
    android:src="@drawable/profile"
    app:civ_border_width="2dp"
    app:civ_border_color="#FF000000"/>

有关此库的更多信息,请访问:https://github.com/hdodenhof/CircleImageView