大家好我有一个只有相对布局的应用程序,我有很多中等大小的文字,比如说我有十个中等大小的文字。
我想在每个文本下面添加一个分隔符/分隔符。
我试过这个
<View
android:layout_width = "match_parent"
android:layout_height = "1dp"
android:background="?android:attr/listDivider"/>
但是我每次手动安排它们都很困难。我必须在许多不同的活动上做到这一点
所以请提前告诉我最简单的方法。
答案 0 :(得分:1)
使用RelativeLayout
并添加android:layout_below
,将其与文字对齐。
<TextView
android:id="@+id/textidhere"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dip"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:background="#dcddde"
android:layout_below="@id/textidhere"/>