如何在Android中获得圆形

时间:2012-04-11 10:10:37

标签: android drawable shape

如何在Android中实现圆形,如下所示,通过Android形状绘制:
enter image description here

1 个答案:

答案 0 :(得分:112)

您需要在drawable文件夹中创建一个类似于:

的形状drawable
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
    <gradient android:startColor="#FFFF0000" android:endColor="#80FF00FF"
        android:angle="270"/>
</shape>

(对于这个例子,我将drawable保存为circle.xml,它将有一个渐变填充)

然后在您的布局中,您需要定义一个视图并将形状设置为背景:

<View android:layout_width="50dp"
    android:layout_height="50dp"
    android:background="@drawable/circle"/>

视图定义了形状的大小和尺寸。

编辑 - 代码结果的屏幕截图

Graphical View

Code Image