ImageView半径与背景

时间:2015-07-22 16:57:56

标签: android imageview

我有ImageView有背景。我需要将border-radius设置为ImageView。我在另一个XML文件中使用以下代码并将其设置为android:src但在设置背景时它不起作用。

<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="10dp"/>
</shape>

如何同时设置背景和半径?

1 个答案:

答案 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>