Відцентруйте кнопку в лінійному макеті


338

Я використовую лінійний макет для відображення досить легкого початкового екрана. У ньому є 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>

6
Що зафіксувало це для мене в LinearLayout з горизонтальним вирівнюванням, було встановити layout_width"wrap_content". Згодом layout_gravityзробив те, що мав робити!
Хтось десь

Якщо вам потрібно категорично використовувати LinearLayout, я думаю, що це має спрацювати: stackoverflow.com/questions/18051472/…
Антоніо,

Відповіді:


373

Якщо ви хочете централізувати елемент посередині екрана, не використовуйте а, 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>

38
Є випадки, коли потрібно використовувати LinearLayout та вміст у центрі. Це не має бути прийнятою відповіддю. Було б краще запропонувати використовувати відносний макет, якщо це можливо, а якщо ні, як централізувати в LinearLayout.
stevebot

Не кажучи вже про те, що RelativeLayout значно інтенсивніший під час виконання через те, що вони повинні вимірювати свої розміри, тоді як LinearLayout є надзвичайно простим і набагато ефективнішим.
Тревор Харт

436

Центр за допомогою 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>

11
LinearLayout простіший і легший у порівнянні з RelativeLayout, повинен бути трохи швидшим.
SurlyDre

3
Я використовував layout_gravity замість сили тяжіння. перехід на android: gravity = "центр" зафіксував це для мене. помилка новачка.
ackushiw

@ackushiw також була моєю проблемою!
Денні

Принаймні для мене android: gravity = "center" атрибут LinearLayout зробив свою справу. Дякую, брате!
tthreetorch

42

Ви намагалися визначити android:gravity="center_vertical|center_horizontal"всередині макета та налаштування android:layout_weight="1"на зображенні?


2
Мені подобається цей варіант, який дозволяє мені тримати мій LinearLayout! (Мені не потрібно було встановлювати android:weight="1"кнопку, щоб центрировать її.)
Себастьян

4
android: гравітація не працює для мене в горизонтальному LinearLayout, але Android: layout_gravity робить.
jfritz42

35

Найпоширенішим методом, який працює з лінійним компонуванням, є встановлення властивості на кнопці зображення

android:layout_gravity="center"

Ви можете вибрати, чи слід вирівнювати ліворуч, вирівнювати по центру чи право вирівнювати кожен об'єкт у лінійному макеті. Зауважте, що вищевказаний рядок точно такий же, як і

android:layout_gravity="center_vertical|center_horizontal"

4
Додайте android: gravity = "center" властивість у батьківський макет - який утримує вашу кнопку (дочірні компоненти).
Шех Актер

вам також потрібен android.orientation = "вертикальний" плюс layout_gravity в батьківській, також елемент LInearLayout ....
Джо Хілі


8

Якщо ви використовуєте, 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>


5
<?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>

Вищеописаний код спрацює.


2

повний та робочий зразок з моєї машини ...

<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>


ви можете використовувати "android: layout_below" лише для братів і сестер "RelativeLayout"
джаз

2

Відповідно до документації на Android для атрибутів XML для Android: layout_gravity , ми можемо це зробити легко :)

<?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>

1
android: layout_gravity = "центр" працює чудово :) дякую!
Amine Soumiaa

1

Встановіть значення 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>

введіть тут опис зображення


0

Ви також можете спробувати цей код:

<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

0

просто використовуйте (щоб це було в центрі вашого макета)

        android:layout_gravity="center" 

і використовувати

         android:layout_marginBottom="80dp"

         android:layout_marginTop="80dp"

змінити позицію


0

Ви також можете встановити ширину LinearLayout до wrap_contentі використання android:layout_centerInParent, android: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"/>



-2

Ви пробували це?

  <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>

-2

використання

android: layout_centerHorizontal = "вірно"


1
Насправді vogon101, це дійсна властивість у RelativeLayout. :) Однак це не відповідає на запитання, оскільки користувач використовував LinearLayout і хотів зосереджуватися як по вертикалі, так і по горизонталі.
Сара

-7

Простіше було б використовувати відносні макети, але для лінійних макетів я зазвичай центрирую, переконуючись, що ширина відповідає батькові:

    android:layout_width="match_parent"

а потім просто дайте поля праворуч і ліворуч відповідно.

    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.