我正在使用线性布局来显示漂亮的初始屏幕。它有1个按钮,该按钮应该在屏幕上水平和垂直居中。但是,无论我尝试做什么,按钮都将使顶部居中对齐。我已经在下面包含了XML,有人可以指出正确的方向吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <ImageButton android:id="@+id/btnFindMe" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical|center_horizontal"
        android:background="@drawable/findme"></ImageButton>

</LinearLayout>


评论

在使用水平对齐的LinearLayout中为我修复的问题是将layout_width设置为“ wrap_content”。随后,layout_gravity完成了应做的工作!

如果您严格需要使用LinearLayout,我认为这应该可行:stackoverflow.com/questions/18051472/…

#1 楼

如果要在屏幕中间居中放置项目,请不要使用LinearLayout,因为它们是用于连续显示多个项目。

请使用RelativeLayout

因此请替换:

android:layout_gravity="center_vertical|center_horizontal"


用于相应的RelativeLayout选项:

android:layout_centerInParent="true"


>因此您的布局文件将如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/RelativeLayout01" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageButton android:id="@+id/btnFindMe" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="@drawable/findme"></ImageButton>

</RelativeLayout>


评论


在某些情况下,您需要使用LinearLayout和中心内容。这不应是公认的答案。如果可能,最好建议使用RelativeLayout,如果不能,请建议使用LinearLayout居中。

–stevebot
15年3月18日在0:16

更不用说RelativeLayout由于必须测量尺寸而需要大量的运行时间,而LinearLayout则非常简单且效率更高。

–特雷弗·哈特(Trevor Hart)
17年7月14日在19:39

#2 楼

使用LinearLayout居中:

<LinearLayout
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <ImageButton
        android:id="@+id/btnFindMe"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/findme" />
</LinearLayout>


评论


与RelativeLayout相比,LinearLayout更简单,重量更轻,应该更快一些。

–SurlyDre
13年15月15日在3:22

我使用的是layout_gravity而不是gravity。更改为android:gravity =“ center”为我修复了此问题。新秀错误。

– ackushiw
2015年12月20日在1:39

@ackushiw也是我的问题!

–丹尼
17年2月11日在11:57

至少对我来说,android:gravity =“ center” LinearLayout属性可以解决问题。谢啦兄弟!

–三重火炬
19年4月27日在17:16

#3 楼

您是否尝试过在布局内定义android:gravity="center_vertical|center_horizontal"并在图像中设置android:layout_weight="1"

评论


我喜欢这个选项,可以让我保持线性布局! (我不必在按钮中设置android:weight =“ 1”来居中。)

–塞巴斯蒂安
2011年7月2日在10:47



android:gravity在水平LinearLayout中对我不起作用,但android:layout_gravity可以。

– jfritz42
2012年3月13日在16:27

#4 楼

线性布局常用的方法是在图像按钮上设置属性。

android:layout_gravity="center"


您可以选择是左对齐,居中对齐还是在线性布局中将每个对象右对齐。请注意,以上行与

android:layout_gravity="center_vertical|center_horizontal"

完全相同

评论


在父级布局中添加android:gravity =“ center”属性-用于保存您的按钮(子组件)。

– Shekh Akther
2013年1月8日14:05

您还需要android.orientation =“ vertical”加上父级(也称为LInearLayout元素)中的layout_gravity。...

–乔·希利(Joe Healy)
15年7月23日在14:08

#5 楼

在LinearLayout中添加此

android:gravity="center"




评论


应该是android:gravity =“ center”

–约翰·乔(John Joe)
17年1月15日在14:51

#6 楼

如果使用LinearLayout,则可以添加重心:

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:gravity="center">
            <Button
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            />
</LinearLayout>`


#7 楼

轻松与此

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:visibility="visible" 
        android:gravity="center"
        android:orientation="vertical" >

        <ProgressBar
            android:id="@+id/pbEndTrip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:gravity="center"
            android:text="Gettings" />
    </LinearLayout>


#8 楼

您可以使用RelativeLayout

#9 楼

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <ImageButton android:id="@+id/btnFindMe" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content"
        android:layout_gravity = "center"
        android:background="@drawable/findme">
    </ImageButton>

</LinearLayout>


以上代码将起作用。

#10 楼

我的机器上完整且有效的样品...




 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context=".MainActivity"
    android:gravity="center"
    android:textAlignment="center">


    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="My Apps!"
        android:id="@+id/textView"
        android:gravity="center"
        android:layout_marginBottom="20dp"
     />

    <Button
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:text="SPOTIFY STREAMER"
        android:id="@+id/button_spotify"
        android:gravity="center"
        android:layout_below="@+id/textView"
        android:padding="20dp"
        />

    <Button
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:text="SCORES"
        android:id="@+id/button_scores"
        android:gravity="center"
        android:layout_below="@+id/textView"
        android:padding="20dp"
        />


    <Button
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="LIBRARY APP"
        android:id="@+id/button_library"
        android:gravity="center"
        android:layout_below="@+id/textView"
        android:padding="20dp"
        />

    <Button
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="BUILD IT BIGGER"
        android:id="@+id/button_buildit"
        android:gravity="center"
        android:layout_below="@+id/textView"
        android:padding="20dp"
        />

    <Button
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="BACON READER"
        android:id="@+id/button_bacon"
        android:gravity="center"
        android:layout_below="@+id/textView"
        android:padding="20dp"
        />

    <Button
        android:layout_width="220dp"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="CAPSTONE: MY OWN APP"
        android:id="@+id/button_capstone"
        android:gravity="center"
        android:layout_below="@+id/textView"
        android:padding="20dp"
        />

</LinearLayout> 




评论


您只能在'RelativeLayout'的兄弟姐妹上使用'android:layout_below'

–爵士乐
16年11月10日在12:49

#11 楼

根据有关android:layout_gravity的XML属性的Android文档,我们可以轻松做到:)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageButton android:id="@+id/btnFindMe" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"

        android:layout_gravity="center"

        android:background="@drawable/findme"></ImageButton>

</LinearLayout>


评论


android:layout_gravity =“ center”效果很好:)谢谢!

–胺Soumiaa
18 Mar 22 '18 at 14:35

#12 楼

在Button中设置为true android:layout_alignParentTop="true" android:layout_centerHorizontal="true",例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
     <Button
        android:id="@+id/switch_flashlight"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/turn_on_flashlight"
        android:textColor="@android:color/black"
        android:onClick="action_trn"
        android:background="@android:color/holo_green_light"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:padding="5dp" />
</RelativeLayout>




#13 楼

您也可以尝试以下代码:

<LinearLayout
            android:id="@+id/linear_layout"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_gravity="center"
            android:orientation="horizontal"
            android:weightSum="2.0"
            android:background="@drawable/anyBackground" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:orientation="vertical"
            android:layout_weight="1" >

            <ImageView
                android:id="@+id/img_mail"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:background="@drawable/yourImage" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:orientation="vertical"
            android:layout_weight="1" >



<ImageView
            android:id="@+id/img_save"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:background="@drawable/yourImage" />
        </LinearLayout>
        </LinearLayout>


评论


您能解释一下这与已经提供的答案有何不同吗?

–EWit
2014-09-19 11:09



#14 楼

只需使用(将其放置在布局的中心)即可。

更改位置

#15 楼

您还可以将LinearLayout的宽度设置为wrap_content并使用android:layout_centerInParentandroid:layout_centerVertical="true"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
>

<ImageButton android:id="@+id/btnFindMe" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"       
    android:background="@drawable/findme"/>




#16 楼

这对我有用。

android:layout_alignParentEnd="true"


#17 楼

您尝试过吗?

  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainlayout" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5px"
android:background="#303030"
>
    <RelativeLayout
    android:id="@+id/widget42"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    >
    <ImageButton
    android:id="@+id/map"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="map"
    android:src="@drawable/outbox_pressed"
    android:background="@null"
    android:layout_toRightOf="@+id/location"
    />
    <ImageButton
    android:id="@+id/location"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="location"
    android:src="@drawable/inbox_pressed"
    android:background="@null"
    />
    </RelativeLayout>
    <ImageButton
    android:id="@+id/home"
    android:src="@drawable/button_back"
    android:background="@null"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    />
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5px"
android:orientation="horizontal"
android:background="#252525"
>
    <EditText
    android:id="@+id/searchfield"
    android:layout_width="fill_parent"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:background="@drawable/customshape"
    />
    <ImageButton
    android:id="@+id/search_button"
    android:src="@drawable/search_press"
    android:background="@null"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    />
</LinearLayout>
<com.google.android.maps.MapView
    android:id="@+id/mapview" 
    android:layout_weight="1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:clickable="true"
    android:apiKey="apikey" />

</TableLayout>


#18 楼

使用


android:layout_centerHorizo​​ntal =“ true”


评论


实际上是vogon101,这是RelativeLayout中的有效属性。 :)但是,它没有回答问题,因为用户使用的是LinearLayout,并且希望垂直和水平居中。

–萨拉
2014年5月9日在1:09

#19 楼

使用相对布局会更容易,但是对于线性布局,我通常通过确保宽度与父级匹配来居中:

相应地。

    android:layout_width="match_parent"