我需要加载图像,但是当我加载图像时,它不应该是方形/矩形,而是圆形。所以我想要圆圈中的图像,边框应该是白色的。如何以圆形/椭圆形加载图像。我尝试使用形状 = 椭圆和渐变 = 270 创建背景,并将图像视图的背景设置为该形状。我还能如何设置 imageview 的背景。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<gradient android:startColor="#FFFF0000" android:endColor="#80FF00FF"
android:angle="270"/>
</shape>