如何创建一个圆形绘图?

时间:2011-05-18 22:35:57

标签: android drawable android-drawable

如何创建一个圆圈drawable,蓝色笔划为5像素,透明填充。

我将drawable传递给ItemizedOverlay

我想用代码执行此操作,我将知道圆的半径。

1 个答案:

答案 0 :(得分:6)

尝试以下方面的内容:

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
       type="OvalShape" >
   <stroke android:width="5dp" android:color="#99104E8B"/>
   ....
</shape>

只需将这样的内容放在drawables目录中的XML文件中,然后像普通图像一样加载它。

请参阅Android文档中的ShapeDrawable。