android圆角矩形有边框无背景色

来源:互联网 发布:怎么用数据库做购物车 编辑:程序博客网 时间:2024/06/09 22:43

我们经常要用到圆角矩形,这也是现在的流行的样式..但是今天在工作中,遇到要写圆角矩形有边框但无背景色的button,本来想让妹子帮忙切图的,但是不想麻烦妹子,自己撑着,说可以做,结果弄了老半天菜搞定的,现在给大家看看,以后避免这麻烦...(大哭大哭大哭



<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="rectangle" >    <!-- 绿色边框圆角矩形 -->    <gradient        android:endColor="#ffffff"        android:startColor="#ffffff" />    <solid android:color="#ffffff" />    <stroke        android:width="@dimen/dp2"        android:color="#95d5b2" />    <corners        android:bottomLeftRadius="@dimen/dp15"        android:bottomRightRadius="@dimen/dp15"        android:topLeftRadius="@dimen/dp15"        android:topRightRadius="@dimen/dp15" /></shape>

0 0