因此,我尝试使用 XMLandroid:divider
属性在 LinearLayout 中的视图之间放置分隔符。当我使用垂直线性布局时,没有出现分隔线。当我使用水平线性布局时,分隔线会显示出来并且工作正常。这是我用于分隔符(drawable/one.xml
)的drawable:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size android:width="1dip" />
<solid android:color="#FFFFFF" />
</shape>
这是我的线性布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@drawable/one"
android:dividerPadding="10dp"
android:showDividers="middle">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="test1"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="test2"
/>
</LinearLayout>
是否无法将分隔符属性与垂直线性布局一起使用,或者我错过了什么?