Android:如何设置多个按钮,编辑文本等

时间:2013-01-28 14:46:33

标签: android android-layout android-widget

如何在水平方向设置两个或多个按钮,并且所有按钮都按垂直形式排列。 请告诉xml编码。

1 个答案:

答案 0 :(得分:1)

您需要将它们放在线性布局中并将方向设置为水平

 <LinearLayout 
       android:id="@+id/login_selectionButtonGroup"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:orientation="horizontal">
                <Button
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_gravity="center_horizontal"
                    android:text="Button 1"
                    android:layout_weight="1">
                </Button>
                <Button
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_gravity="center_horizontal"
                    android:text="Button 2"
                    android:layout_weight="1">
                </Button>
        </LinearLayout>

希望这有帮助