1

我正在尝试对齐列表视图中的行元素。我有一个包含此代码的布局行 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/TV_list_from_db_p_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dp" >

        <Button
            android:id="@+id/BTN_addOne_from_db"
            android:layout_width="33dp"
            android:layout_height="wrap_content"
            android:background="@drawable/button"
            android:onClick="addOneToQuantity"
            android:text="+" />

        <EditText
            android:id="@+id/TV_Quantity_from_db"
            android:layout_width="44dp"
            android:layout_height="32dp" >
        </EditText>

        <Button
            android:id="@+id/BTN_subOne_from_db"
            android:layout_width="33dp"
            android:layout_height="wrap_content"
            android:background="@drawable/button"
            android:onClick="subOneToQuantity"
            android:text="-" />
    </LinearLayout>

    <CheckBox
        android:id="@+id/CHK__list_from_db"
        android:layout_width="30dp"
        android:layout_height="30dp"
  />

</LinearLayout>

这段代码给了我这个: 我希望元素对齐,现在它按文本视图的长度对齐

像这样:
|TextView|数字选择器| 复选框|
|TextView|数字选择器| 复选框|
|TextView|数字选择器| 复选框|

有任何想法吗?

4

2 回答 2

2

由于您使用的是 LinearLayout,因此您可以同时提供内部 LinearLayout 和 CheckBoxlayout_width="wrap_content"并提供 TextViewlayout_width="0dp"layout_weight="1"

于 2013-01-11T15:38:12.793 回答
0

使用相对布局并按以下顺序排列:

Check box - align parent right - width="30dp"
Button1 - to left of check box - width="33dp"
Edit Text - to left of Button1 - width="44dp"
Button2 - to left of Edit Text - width="33dp"
TextView - align parent left and to left of Button2 - width wrap_content
于 2013-01-11T16:09:12.503 回答