如何将android中按钮的右/左侧与屏幕中心对齐?

时间:2015-01-19 02:29:37

标签: android button alignment center

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

3 个答案:

答案 0 :(得分:1)

试试这个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>

答案 1 :(得分:0)

您可以将按钮包裹在水平LinearLayout内,并使用layout_weight将屏幕分成两半,然后使用layout_alignParentLeft / layout_alignParentRight来对齐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>

答案 2 :(得分:0)

您确定要在所有设备中使用相同尺寸的按钮吗?人们试图避免它并使视图元素变得灵活。 无论如何你想要设置相同的大小只是直接写在布局

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>