码迷,mamicode.com
首页 > 移动开发 > 详细

(五十三) android中用xml文件画圆

时间:2015-04-14 12:49:56      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

1、draw_cirle.xml的代码如下所示:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval" >
    <solid android:color="#999999"/>
    <size android:width="5dp"  
    android:height="5dp"/>
</shape>

2、使用的时候只要将draw_cirle.xml作为某个控件的背景就好了。例如如下所示:

<TextView
            android:layout_width="8dp"
            android:layout_height="8dp"
            android:layout_gravity="center_vertical"
            android:background="@drawable/draw_cirle" />

 

(五十三) android中用xml文件画圆

标签:

原文地址:http://www.cnblogs.com/fuyanan/p/4424342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!