您的位置:首页 > 其它

安卓中shape(形状)的应用

2016-05-24 08:20 204 查看
drawable目录下新建xml文件选择shape

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<!-- 角度 -->
<corners android:radius="5dp" />

<!--
渐变
<gradient
android:centerColor="#fff"
android:endColor="#0f0"
android:startColor="#f00" />
-->

<!-- 纯色 -->
<solid android:color="#9000" />

<!-- 边框
<stroke
android:width="1dp"
android:color="#000"
android:dashWidth="5dp"
android:dashGap="3dp"
/>
-->

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