android布局之设置下划线

一、方法一
1、方法用View(注意V是大写的,而不是小写的)
2、代码

            <View
                android:layout_marginTop="5sp"
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="@color/gay"
                >

注意:一定要背景
二、方法二
1、方法divider和showdivider标签

你可能感兴趣的:(Android,android)