我尝试使用下面的代码创建一个圆角图像按钮,当您不声明src图像时,该代码可以正常工作。但是,当您这样做时,它只是放置图像但没有舍入效果。
style.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"
/>
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>
答案 0 :(得分:0)
将您的src
图片制作圆形,或使其透明,以便您可以看到背后的圆形背景。