(五十三) android中用xml文件画圆
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" />
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。