我有ImageView
有背景。我需要将border-radius
设置为ImageView
。我在另一个XML文件中使用以下代码并将其设置为android:src
但在设置背景时它不起作用。
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="10dp"/>
</shape>
如何同时设置背景和半径?
答案 0 :(得分:3)
您可以将背景与border-radius xml一起设置。
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="10dp"/>
<!-- background -->
<solid android:color="@android:color/white" />
</shape>