要设置Android圆角图片,可以通过以下步骤实现:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners android:radius="10dp" />
</shape>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/your_image"
android:background="@drawable/round_corner" />
将需要显示的图片放置在drawable文件夹下,并将图片命名为your_image.png(可以自定义名称)。
最后,在ImageView的background属性中引用前面创建的round_corner.xml文件,即可实现圆角图片效果。
通过以上步骤,就可以在Android应用中实现圆角图片的效果。