码迷,mamicode.com
首页 > 移动开发 > 详细

android stroke描边,去掉左右描边

时间:2015-10-07 19:07:04      阅读:530      评论:0      收藏:0      [点我收藏+]

标签:

一般描边开始:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
        
	<stroke android:width="1dp" android:color="@color/line" /> 
</shape>



去掉左右描边:


<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:right="-2dp"
        android:left="-2dp">
        <shape>
            <solid android:color="@android:color/transparent"/>
            <stroke
                android:width="1dp"
                android:color="@color/line"/>
        </shape>
    </item>

</layer-list>




android stroke描边,去掉左右描边

标签:

原文地址:http://my.oschina.net/gabriel1215/blog/513958

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!