如何对齐按钮?

时间:2013-11-19 14:11:10

标签: android android-layout

按钮如何在android中对齐,以便它们在按钮上方,下方和按钮之间具有适当的间距?

当前代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<include 
     android:id="@+id/ActionBackupBar"
     layout="@layout/actionbar_layout" 
    />

  <Button
      android:id="@+id/btnSelectLocation"
      style="@style/ButtonText"
      android:layout_width="200dp"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5sp"
      android:layout_marginRight="2sp"
      android:layout_marginTop="0sp"
      android:text="@string/activitySelectMyLocationButton" />

<Button
    android:id="@+id/btnCurrentLocation"
    style="@style/ButtonText"
    android:text="@string/activitySelectSearchLocationButton"
    android:layout_marginBottom="5sp"
    android:layout_marginLeft="5sp"
    android:layout_marginRight="2sp"
    />

enter image description here

2 个答案:

答案 0 :(得分:1)

更改RelativeLayout并尝试此操作后:

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

<Button
    android:id="@+id/btnSelectLocation"
    style="@style/ButtonText"
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_centerHorizontal="true"
    android:layout_centerInParent="true"
    android:layout_centerVertical="true"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:text="text1" />
<Button
    android:id="@+id/btnCurrentLocation"
    style="@style/ButtonText"
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/btnSelectLocation"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:text="test2" />
</RelativeLayout>

答案 1 :(得分:0)

使用RelativeLayout而不是LinearLayout。 然后您可以轻松对齐按钮。

希望这可以帮到你。