程序员人生 网站导航

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

栏目:综合技术时间:2015-01-23 09:05:23

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



<?xml version="1.0" encoding="utf⑻"?> <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>

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐