【分割线】Android中的分割线实现

时间:2021-02-07 20:08:03

Google的某些应用源码中可以看到

1.用View制作分隔线

<View
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="?android:attr/listDivider"
/>

2.ImageView制作分割线

<ImageView
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#F00"
/>

3.Android 3.0以上版本,LinearLayout 支持直接显示分割线

 android:showDividers有4个值

   none:不显示

   beginning:开始处显示

   end:结尾处显示

   middle:每两个足尖间显示

除了要设置android:showDivider还要设置android:divider属性,该属性表示分隔线的图像,需要一个Drawable ID。

 代码中可以用以下两种方法设置android:showDivider和android:divider属性

 linearLayout.setShowDividers

 linearLayout.setDividerDrawable