Android自定义分割线_水平及垂直分割线的两种实现方法 :
很多时候我们在做Android开发的时候、需要设置Item和Item的分割线、尽管不是在ListView里面、
我们也会使用到分割线来区分不同选项、达到条目清晰的目的;
两种实现分割线的方法 :
一、自定义STYLE实现分割线
1、水平分割线Style
<style name="common_horizontal_division_line_style">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">0.5dp</item>
<item name="android:orientation">horizontal</item>
<item name="android:background">#dddddd</item>
</style>
2、垂直分割线
<style name="common_vertical_division_line_style">
<item name="android:layout_width">0.5dp</item>
<item name="android:layout_height">match_parent</item>
<item name="android:background">#dddddd</item>
</style>
3、使用LinearLayout调用
<LinearLayout style="@style/common_horizontal_division_line_style" />