垂直LinearLayout的分频器?

时间:2013-10-22 01:54:32

标签: android android-layout android-linearlayout divider

所以我试图使用XML android:divider属性在LinearLayout中的视图之间放置一个分隔符。当我使用垂直LinearLayout时,不显示分隔符。当我使用水平LinearLayout时,分隔符显示并正常工作。这是我用于分隔符(drawable/one.xml)的可绘制的:

<?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:

<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>

是否无法将divider属性与垂直线性布局一起使用,或者我遗漏了什么?

1 个答案:

答案 0 :(得分:25)

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

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

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