如何制作组按钮?

时间:2014-01-24 13:32:41

标签: android button

我有3个按钮。问题是我无法在布局中心放置3个按钮。 问题将显示在我将手机设为水平时,按钮将显示在布局左侧不在中心。

1 个答案:

答案 0 :(得分:2)

您需要在线性布局中嵌入相对布局。类似于下面显示的内容。如果维护LinearLayout,这应该允许您获得可以更好地操作的组中的按钮。另一件事是你有横向布局的单独布局吗?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<RelativeLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal" >

    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>


</RelativeLayout>