关于android的分割线的创建一共有三种方式
1.使用自定义View
<View
android:layout_width=“match_parent"
android:layout_height=“1dp"
android:background=”#000000”/>
这种方式是最简单的创建方法,但封装度不好.不利于多次被复用.
2.使用ImageView
<ImageView
android:layout_width=“match_parent"
android:layout_height=“0.5dp"
android:background=”@color/colorAccent”/>
这种方式使用的较多
3.自定义xml
<?xml version="1.0" encoding="utf-8"?>
<solid android:color="@color/colorAccent"/>
<size android:height="1dp"/>
这种方式增加了复用度,一般可以重复使用,封装的较好.也比较方便,使用时,一般在垂直布局中设置,水平布局中不能显示