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

android 用XML定义边框,

时间:2016-03-31 10:41:44      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

只上下边框有色

layer-list item内矩形shape叠加实现

xml绘制背景 layout_line.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 连框颜色值 -->
    <item>
        <shape>
            <solid android:color="#CCCCCC" />
        </shape>
    </item>
    <!-- 主体背景颜色值 -->
    <!-- 此处定义只有上下两边有边框 高度为1像素-->
    <item
        android:bottom="1dp"
        android:top="1dp">
        <!--边框里面背景颜色 白色-->
        <shape>
            <solid android:color="#ffffff" />
        </shape>
    </item>
</layer-list>

设置到控件

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:background="@drawable/layout_line"
        android:orientation="horizontal" >

效果图:

技术分享

 根据需要,修改:

android:top="1dp"
android:left="1dp"
android:right="1dp"
android:bottom="1dp"

显示需要的边框

 

android 用XML定义边框,

标签:

原文地址:http://www.cnblogs.com/xiaobijia/p/5340158.html

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