如何创建一个圆圈drawable
,蓝色笔划为5像素,透明填充。
我将drawable
传递给ItemizedOverlay
。
我想用代码执行此操作,我将知道圆的半径。
答案 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。