shape圆形画法(oval)
本文地址: http://blog.csdn.net/caroline_wendy
1. 创建一个文件夹drawable, 用于存放xml类型的图片资源;
2. 在drawable中建立一个shape标签的文件:
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <solid android:color="#666666"/> <size android:width="120dp" android:height="120dp"/> </shape>
3. 在ImageView的src中使用这个文件,即可.
时间: 2024-10-21 17:09:59