10

因此,我尝试使用 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>

是否无法将分隔符属性与垂直线性布局一起使用,或者我错过了什么?

4

1 回答 1

26

对于垂直布局,在drawable中,我认为您需要替换

  <size android:width="1dip" />

  <size android:height="1dip" />
于 2013-10-22T02:35:11.447 回答