在Android中,可以通过使用ImageView
的Background
属性来为ImageView
设置圆角。
以下是一个示例代码来实现ImageView
圆角的效果:
<ImageView
android:id="@+id/image"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/circle_background"
android:src="@drawable/your_image"
android:scaleType="centerCrop" />
然后在drawable
文件夹中创建一个circle_background.xml
文件,内容如下:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="50dp" />
</shape>
这样就可以实现ImageView
圆角的效果,其中android:radius
属性的值可以根据需要进行调整。