Düğmeyi Doğrusal düzende ortala


338

Oldukça hafif bir başlangıç ​​ekranı görüntülemek için doğrusal bir düzen kullanıyorum. Ekranda hem yatay hem de dikey olarak ortalanması gereken 1 düğme vardır. Ancak ne yapmaya çalışsam da düğmeyi ortaya hizalar. Aşağıdaki XML dahil, bazı doğru yönde beni işaret edebilir?

<?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
Bunu yatay hizalama ile bir LinearLayout'ta benim için sabitleyen şey layout_width"wrap_content" olarak ayarlamaktı . Daha sonra layout_gravityyapması gerekeni yaptı!
Bir Yerde

Kesinlikle LinearLayout kullanmanız gerekiyorsa, bunun işe yarayacağını düşünüyorum: stackoverflow.com/questions/18051472/…
Antonio

Yanıtlar:


373

Bir öğeyi ekranın ortasına ortalamak istiyorsanız LinearLayout, bunlar bir satırdaki birkaç öğeyi görüntülemek için kullanıldığı için a kullanmayın .

RelativeLayoutBunun yerine bir kullanın.

Öyleyse değiştirin:

android:layout_gravity="center_vertical|center_horizontal"

ilgili RelativeLayoutseçenek için:

android:layout_centerInParent="true"

Böylece düzen dosyanız şu şekilde görünecektir:

<?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
Bir LinearLayout ve center içeriği kullanmanız gereken durumlar vardır. Bu kabul edilen cevap olmamalıdır. Mümkünse bir RelativeLayout kullanmanızı ve eğer değilse bir LinearLayout'ta nasıl ortalamanızı önermek daha iyi olur .
stevebot

Bir RelativeLayout'un boyutlarının ölçülme şekli nedeniyle çok daha fazla çalışma zamanı yoğun olduğundan, LinearLayout'un süper basit ve çok daha verimli olduğundan bahsetmiyoruz.
Trevor Hart

436

Bir LinearLayout kullanarak ortalayın:

<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, bir RelativeLayout'a kıyasla daha basit ve hafiftir, biraz daha hızlı olmalıdır.
SurlyDre

3
Yerçekimi yerine layout_gravity kullanıyordum. android olarak değiştirmek: gravity = "center" bunu benim için düzeltti. acemi hatası.
ackushiw

@ackushiw da benim sorunumdu!
Denny

En azından benim için android: gravity = "center" hile yaptı. Teşekkürler kardeşim!
tthreetorch

42

Görüntüdeki android:gravity="center_vertical|center_horizontal"düzeni ve ayarı tanımlamayı denediniz android:layout_weight="1"mi?


2
Mi LinearLayout'u korumamı sağlayan bu seçeneği beğendim! (Ama android:weight="1"ortalamak için düğmeye basmak zorunda
kalmadım

4
android: yerçekimi benim için yatay bir LinearLayout'ta çalışmıyor, ama android: layout_gravity çalışıyor.
jfritz42

35

Doğrusal mizanpajla çalışan yaygın olarak kullanılan bir yöntem, görüntü düğmesinde bir özellik ayarlamaktır

android:layout_gravity="center"

Doğrusal mizanpajdaki her bir nesneyi sola hizalamayı, ortaya hizalamayı ya da sağa hizalamayı seçebilirsiniz. Yukarıdaki satırın tam olarak aynı olduğunu unutmayın.

android:layout_gravity="center_vertical|center_horizontal"

4
Üst düzende android: gravity = "center" özelliği ekleyin - düğmenizi tutar (alt bileşenler).
Shekh Akther

Ayrıca android.orientation = "dikey" artı LInearLayout öğesi olarak ana, layout_gravity gerekir ....
Joe Healy


8

Eğer kullanırsanız LinearLayout, ağırlık merkezini ekleyebilirsiniz:

<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

bununla kolay

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

Yukarıdaki kod çalışacaktır.


2

Makinemden eksiksiz ve çalışan bir örnek ...

<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' i yalnızca 'RelativeLayout' kardeşlerinde kullanabilirsiniz
jazz

2

Android XML için Android belgelerine göre : layout_gravity , kolayca yapabiliriz :)

<?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 = "merkez" iyi çalışıyor :) teşekkürler!
Amine Soumiaa

1

True android:layout_alignParentTop="true"ve android:layout_centerHorizontal="true"Button öğelerinde şu şekilde ayarlayın:

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

resim açıklamasını buraya girin


0

Bu Kodu da deneyebilirsiniz:

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

Bunun daha önce verilen cevaplardan nasıl farklı olduğunu açıklayabilir misiniz?
EWit

0

sadece kullanın (düzeninizin ortasında yapmak için)

        android:layout_gravity="center" 

ve kullan

         android:layout_marginBottom="80dp"

         android:layout_marginTop="80dp"

konumu değiştirmek


0

Ayrıca etmek LinearLayout genişliğini ayarlayabilirsiniz wrap_contentve kullanımı 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

Bu benim için çalışıyor.

android:layout_alignParentEnd="true"

-2

Bunu denedin mi?

  <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

kullanım

android: layout_centerHorizontal = "true"


1
Aslında vogon101, bu RelativeLayout'ta geçerli bir özelliktir. :) Bu soruya cevap vermiyor, çünkü kullanıcı bir LinearLayout kullanıyor ve hem dikey hem de yatay olarak ortalamak istiyordu.
Sarah

-7

Göreli mizanpajları kullanmak daha kolay olurdu, ancak doğrusal mizanpajlar için genellikle genişliğin üst öğeyle eşleştiğinden emin olarak ortalarım:

    android:layout_width="match_parent"

ve sonra sadece sağa ve sola kenar boşlukları verin.

    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.