Как заставить кнопку делиться половиной ширины диалога в андроиде? - PullRequest
0 голосов
/ 17 октября 2011

Я хочу, чтобы кнопки занимали половину ширины диалогового окна, спасибо x3.enter image description here

<RelativeLayout android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:paddingBottom="10dp"
    android:paddingLeft="10dp" android:paddingRight="10dp">
    <TextView android:layout_width="fill_parent"
        android:layout_height="1dip" android:background="#FFFFFF" android:id="@+id/seperator_line" />
    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:id="@+id/text1"
        android:text="Amount:" android:textColor="#FFFFFF"
        android:layout_below="@id/seperator_line" android:padding="10dp" />
    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:id="@+id/deleteButton_dialog"
        android:layout_below="@id/text1" android:text="Delete" />
    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:id="@+id/cancelButton_dialog"
        android:text="Cancel" android:layout_toRightOf="@id/deleteButton_dialog"
        android:layout_below="@id/text1" />
</RelativeLayout>

1 Ответ

1 голос
/ 17 октября 2011

Вы можете поместить их в LinearLayout, а затем установить ширину «fill_parent» и layout_weight равным «1».Как это:

<LinearLayout android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:orientation="horizontal"
              android:layout_below="@id/text1">
    <Button android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:id="@+id/deleteButton_dialog"
            android:text="Delete" />
    <Button android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:id="@+id/cancelButton_dialog"
            android:text="Cancel"/>
</LinearLayout>
...