2011-11-23 99 views

回答

4

無論重量,您可以通過使用一個視圖中繪製一個水平線,例如:

<View 
    android:layout_width="fill_parent" 
    android:layout_height="1dip" 
    android:background="#ffffffff" /> 
0

就再拍LinearLayout中的2個佈局之間 - 在這裏 2兒童LinearLayouts簡單的例子,每個2個textviews 。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
    <LinearLayout 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent" 
    android:orientation="vertical"> 
    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/hello"/> 
    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/hello"/> 
    </LinearLayout> 

    <!-- In between 2 child layouts --> 

    <LinearLayout 
    android:layout_height="3dp" 
    android:layout_width="fill_parent" 
    android:background="@color/white"/> 

    <LinearLayout 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent" 
    android:orientation="vertical"> 
     <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/hello"/> 
     <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/hello"/> 
</LinearLayout> 
</LinearLayout>