如何将 android 中按钮的 right/left 一侧与屏幕中心对齐?

How do I align the right/left side of a button in android to the center of the screen?

我原以为它会是 android:layout_startOf"centerHoriztonal" 或类似的东西,但我已经搜索过但找不到任何东西。我适合帮助我正在尝试制作一个音板应用程序,其中所有按钮在多个设备屏幕上的大小都可以相同。

您可以将按钮包裹在水平 LinearLayout 中,并使用 layout_weight 将屏幕分成两半,然后使用 layout_alignParentLeft/layout_alignParentRight 对齐 RelativeLayout 中的按钮,该 RelativeLayout 恰好占据屏幕的一半屏幕宽度。

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

     <RelativeLayout
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="1">

         <Button 
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_alignParentRight="true"
             android:text="Button Text"
             /> 
     </RelativeLayout>

     <RelativeLayout
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="1">

     </RelativeLayout>

 </LinearLayout>

另一种方法是创建一个在父视图中水平居中的虚拟视图对象,并将您的按钮对齐到它的左侧或右侧:

   <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

      <View
        android:id="@+id/dummyview"
        android:layout_width="0px"
        android:layout_height="0px"
        android:layout_centerHorizontal="true"/>

      <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@id/dummyview"
        android:text="Button Text"/>

  </RelativeLayout>

您确定要在所有设备上使用相同大小的按钮吗?人们试图避免它并使视图元素灵活。 无论如何,如果你想设置相同的大小,直接写在 layout

android:layout_width = "@dimen/valueForButton"; //some absolute value

如果从同一点开始,只需将所有按钮添加到LinearLayout中,然后在那里进行一些操作,例如

android:layout_gravity = "center_horizontal";

您的布局必须是这样的:

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:orientation="vertical" >

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

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

    <Button
        android:id="@+id/button3"
        android:layout_width="@dimen/valueForButton"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>

试试这个xml

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

<Button
android:id="@+id/button1"
android:text="Here is button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
/>

<Button
android:id="@+id/button2"
android:text="Here is button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
/>

</RelativeLayout>