我正在尝试使用下面的代码创建一个圆形图像按钮,当您不声明 src 图像时该按钮有效。但是,当您这样做时,它只是将图像放入其中,但没有对其进行四舍五入效果。
样式.xml
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_below="@+id/imageButton1"
android:layout_centerHorizontal="true"
android:layout_marginTop="41dp"
android:src="@drawable/ellyfish"
android:background="@drawable/roundcorner"
/>
圆角.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#33DDFF" />
<corners android:radius="50dp" />
</shape>