Wyśrodkuj przycisk w układzie liniowym


338

Używam układu liniowego, aby wyświetlić całkiem lekki ekran początkowy. Ma 1 przycisk, który ma być wyśrodkowany na ekranie zarówno w poziomie, jak i w pionie. Jednak bez względu na to, co próbuję zrobić, przycisk wyrówna do góry środek. Poniżej zamieściłem XML. Czy ktoś może skierować mnie w dobrym kierunku?

<?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
To, co naprawiło to dla mnie w LinearLayout z wyrównaniem poziomym, to ustawienie layout_widthna „wrap_content”. Następnie layout_gravityzrobił to, co miał zrobić!
Ktoś gdzieś

Jeśli potrzebujesz ściśle użyć LinearLayout, myślę, że to powinno zadziałać: stackoverflow.com/questions/18051472/...
Antonio

Odpowiedzi:


373

Jeśli chcesz wyśrodkować element na środku ekranu, nie używaj znaku, LinearLayoutponieważ są one przeznaczone do wyświetlania wielu elementów z rzędu.

RelativeLayoutZamiast tego użyj .

Więc zamień:

android:layout_gravity="center_vertical|center_horizontal"

dla odpowiedniej RelativeLayoutopcji:

android:layout_centerInParent="true"

Twój plik układu będzie wyglądał następująco:

<?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
Są przypadki, w których musisz użyć LinearLayout i centrum zawartości. To nie powinna być zaakceptowana odpowiedź. Lepiej byłoby zasugerować użycie RelativeLayout, jeśli to możliwe, a jeśli nie, to jak wyśrodkować w LinearLayout.
stevebot

Nie wspominając już o tym, że RelativeLayout wymaga dużo więcej czasu działania ze względu na sposób, w jaki muszą mierzyć swoje wymiary, podczas gdy LinearLayout jest bardzo prosty i znacznie wydajniejszy.
Trevor Hart

436

Wyśrodkuj za pomocą 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 jest prostszy i lżejszy w porównaniu do RelativeLayout, powinien być nieco szybszy.
SurlyDre,

3
Użyłem układu_grawitacja zamiast grawitacji. zmiana na Androida: grawitacja = „środek” naprawiła to dla mnie. błąd nowicjusza.
ackushiw

@ackushiw był również moim problemem!
Denny

Przynajmniej dla mnie android: gravity = "center" LinearLayout atrybut załatwił sprawę. Dzięki, stary!
tthreetorch 27.04.19

42

Czy próbowałeś zdefiniować android:gravity="center_vertical|center_horizontal"układ i ustawienie android:layout_weight="1"w obrazie?


2
Podoba mi się ta opcja, która pozwala mi zachować mi LinearLayout! (Nie musiałem jednak ustawiać android:weight="1"przycisku, aby go wyśrodkować.)
Sébastien

4
android: grawitacja nie działa dla mnie w poziomym układzie liniowym, ale android: układ_grawitacji działa.
jfritz42

35

Często stosowaną metodą działającą w układzie liniowym jest ustawienie właściwości na przycisku obrazu

android:layout_gravity="center"

Możesz wybrać wyrównanie do lewej, wyśrodkowanie lub wyrównanie do prawej każdego obiektu w układzie liniowym. Zauważ, że powyższa linia jest dokładnie taka sama jak

android:layout_gravity="center_vertical|center_horizontal"

4
Dodaj właściwość android: gravity = "center" w układzie nadrzędnym - która przytrzymuje przycisk (elementy potomne).
Shekh Akther

potrzebujesz również android.orientation = "vertical" plus rozkład_grawitacji w rodzicu, czyli element LInearLayout ....
Joe Healy


8

Jeśli używasz LinearLayout, możesz dodać środek ciężkości:

<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

łatwe z tym

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

Powyższy kod będzie działał.


2

kompletna i działająca próbka z mojej maszyny ...

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


możesz używać „android: layout_below” na rodzeństwie „RelativeLayout”
jazz

2

Zgodnie z dokumentacją Androida dla atrybutów XML Androida: layout_gravity , możemy to zrobić łatwo :)

<?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 = "centrum" działa dobrze :) dzięki!
Amine Soumiaa

1

Ustaw na true android:layout_alignParentTop="true"i android:layout_centerHorizontal="true"w przycisku, tak jak poniżej:

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

wprowadź opis zdjęcia tutaj


0

Możesz także wypróbować ten kod:

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

Czy możesz wyjaśnić, czym to się różni od już podanych odpowiedzi?
EWit,

0

po prostu użyj (aby ustawić go na środku układu)

        android:layout_gravity="center" 

I użyć

         android:layout_marginBottom="80dp"

         android:layout_marginTop="80dp"

zmienić pozycję


0

Można również ustawić szerokość LinearLayout do wrap_contenti używanie 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"/>


0

To działa dla mnie.

android:layout_alignParentEnd="true"

-2

Próbowałeś tego?

  <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

posługiwać się

android: layout_centerHorizontal = "true"


1
W rzeczywistości vogon101, jest to poprawna właściwość w RelativeLayout. :) Nie odpowiada to jednak na pytanie, ponieważ użytkownik korzystał z LinearLayout i chciał wyśrodkować go w pionie i poziomie.
Sarah

-7

Łatwiej byłoby użyć układów względnych, ale w przypadku układów liniowych zwykle centruję, upewniając się, że szerokość odpowiada elementowi nadrzędnemu:

    android:layout_width="match_parent"

a następnie po prostu podaj marginesy odpowiednio w prawo i w lewo.

    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.