可能重複:
Android Drawing Separator/Divider Line in Layout?如何繪製兩個線性佈局
在我的活動我也有重物1父LinearLayout中有重量2。現在我用兩個Linearlayouts想要在兩個子元素Linearlayouts之間畫一條線?
可能重複:
Android Drawing Separator/Divider Line in Layout?如何繪製兩個線性佈局
在我的活動我也有重物1父LinearLayout中有重量2。現在我用兩個Linearlayouts想要在兩個子元素Linearlayouts之間畫一條線?
無論重量,您可以通過使用一個視圖中繪製一個水平線,例如:
<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#ffffffff" />
就再拍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>