Android在Android UI中绘制圆角矩形

时间:2015-12-04 11:43:33

标签: android user-interface shape

我想在图像上绘制形状,我该怎么做?enter image description here

2 个答案:

答案 0 :(得分:5)

制作xml drawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <solid android:color="@color/red" />

    <corners android:radius="10dp" />

</shape>

并将此drawable设置为imageview background

答案 1 :(得分:0)

您可以通过使用形状或图层来遵循上面建议的Bhargav方法和.xml文件(您可以找到许多指南)或者您可以使用Picasso Library以及许多这样的功能。毕加索让这很简单,我建议你使用毕加索。