RelativeView中的可视分隔符

时间:2010-12-18 06:13:03

标签: android-layout

有没有办法在相对布局中创建一个类似于使用列表分隔符的方式的可视分隔符?

这就是我目前所拥有的。

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

 <TextView
        android:layout_height="wrap_content"
        android:text="Screen Ratio:"  
        android:id="@+id/ScreenRatio" 
        android:layout_width="100dip" 
        android:layout_alignTop="@+id/ratio_spinner" 
        android:layout_alignBottom="@+id/ratio_spinner" 
        android:gravity="center_vertical"/>


 <Spinner android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:layout_toRightOf="@+id/ScreenRatio" 
  android:id="@+id/ratio_spinner"/>

 <TextView
        android:layout_height="wrap_content"
        android:text="Units:"  
        android:id="@+id/Units"
        android:layout_width="wrap_content" 
        android:layout_toLeftOf="@+id/unit_spinner"
        android:layout_alignTop="@+id/unit_spinner"
        android:layout_alignBottom="@+id/unit_spinner"
        android:gravity="center_vertical" 
        android:layout_alignParentLeft="true"/>

    <Spinner android:layout_width="fill_parent" 
 android:layout_height="wrap_content" 
 android:layout_toRightOf="@+id/ScreenRatio" 
 android:layout_below="@+id/ratio_spinner" 
 android:id="@+id/unit_spinner"/> 

     <Button
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" 
        android:text="Clear" 
        android:layout_alignParentBottom="true" 
        android:layout_alignParentRight="true" 
        android:gravity="fill" 
        android:paddingLeft="50dip" 
        android:paddingRight="50dip"/>

</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

到目前为止,我已尝试使用以下代码在TableLayout中添加分隔符:

<View android:id="@+id/view_separator" 
 android:background="#FFFFFF" 
 android:layout_centerVertical ="true"
 android:layout_width = "fill_parent"
 android:layout_height="2dip"
 android:layout_alignParentTop="true"/>

它可以帮到你,试试吧。