如果您的表格只有兩列,則可能更容易使用線性佈局,併爲LinearLayout的每個成員指定layout_weight
。這裏有一個例子:
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="2">
<TextView android:id="@+id/txt1"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:text="Buy"/>
<TextView android:id="@+id/txt2"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:text="Share"/>
</LinearLayout>
你只需要確保該layout_weight
S上的各個觀點款項高達父ViewGroup中的weightSum
總和。