1

3つのボタンがあるカスタムダイアログがあり、ボタンが1つしかない場合もあります。私が3つのボタンを持っているときLinearLayout、それ自体でそれらのボタンによく合います。しかし、ボタンが1つしかない場合は、1つのボタンに全幅を使用できるため、そのボタンが大きく見えすぎます。ボタンが1つしかない場合は、使用可能な幅全体の半分だけを取るか、コンテンツを折り返す必要があります(ボタンの画像)。参照用に次の画像を参照してください-

3ボタンダイアログ

1ボタンダイアログ

4

2 に答える 2

3

要件に類似したこのXMLファイルを参照してください。不要なボタンに移動するだけの視認性。

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

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button"/>


    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Button"/>

</LinearLayout>
于 2012-04-10T08:04:00.653 に答える
1

1 つのボタンが使用可能な画面幅の半分を占めるようにするには、次のようにする必要があります。

  1. android:weightSum="2"親に設定LinearLayout
  2. android:layout_weight="1"に設定Button
于 2012-04-10T07:51:20.057 に答える