您的位置:首页 > 移动开发 > Android开发

Android 圆图,正方形图等各种样式的xml的定义

2018-02-07 15:04 411 查看
圆形的图片的:

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

正方形的只需要把
android:shape="oval"

换成

android:shape="rectangle"

也就是shape的属性。

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android