LinearLayout布局中每个控件之间添加分割线

来源:互联网 发布:淘宝极有家是正品吗 编辑:程序博客网 时间:2024/06/01 08:14

在drawable文件夹下创建shape类型的xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/software_textColor_unselected"></solid>
    <size android:height="1px"></size>
</shape>


在布局中引用

 android:divider="@drawable/hengxian"

 android:showDividers="middle"

0 0