จัดกึ่งกลางปุ่มในเค้าโครงแบบเส้นตรง


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/…
Antonio

คำตอบ:


373

หากคุณต้องการจัดศูนย์กลางรายการไว้ตรงกลางของหน้าจออย่าใช้ a 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 และเนื้อหากึ่งกลาง นี่ไม่ควรเป็นคำตอบที่ยอมรับได้ มันจะเป็นการดีกว่าที่จะแนะนำให้ใช้ RelativeLayout ถ้าเป็นไปได้และถ้าไม่ใช่วิธีการจัดกึ่งกลางใน 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 = "center" แก้ไขสิ่งนี้ให้ฉัน มือใหม่ผิดพลาด
ackushiw

@ackushiw ก็เป็นปัญหาของฉันเช่นกัน!
Denny

อย่างน้อยสำหรับฉัน Android: แรงโน้มถ่วง = "ศูนย์" แอตทริบิวต์ LinearLayout ได้หลอกลวง ขอบใจนะ!
tthreetorch

42

คุณลองกำหนดandroid:gravity="center_vertical|center_horizontal"ภายในเค้าโครงและการตั้งค่าandroid:layout_weight="1"ในภาพหรือไม่?


2
ฉันชอบตัวเลือกนี้ซึ่งช่วยให้ฉันรักษาไมล์ LinearLayout ได้! (ฉันไม่ต้องตั้งandroid:weight="1"ปุ่มให้อยู่ตรงกลาง)
Sébastien

4
android: แรงโน้มถ่วงไม่ทำงานสำหรับฉันใน LinearLayout แนวนอน แต่ android: layout_gravity ทำ
jfritz42

35

วิธีที่ใช้กันทั่วไปที่ทำงานกับเค้าโครงเชิงเส้นคือการตั้งค่าคุณสมบัติบนปุ่มรูปภาพ

android:layout_gravity="center"

คุณสามารถเลือกว่าจะจัดชิดซ้ายจัดกึ่งกลางหรือจัดแนวขวาแต่ละวัตถุในเค้าโครงเชิงเส้น โปรดทราบว่าบรรทัดด้านบนนั้นแม่นยำเหมือนกับ

android:layout_gravity="center_vertical|center_horizontal"

4
เพิ่ม android: gravity = "center" คุณสมบัติในเลย์เอาต์หลัก - ซึ่งเก็บปุ่มของคุณ (คอมโพเนนต์ย่อย)
Shekh Akther

คุณต้องใช้ android.orientation = "vertical" บวกกับ layout_gravity ในผู้ปกครองหรือที่รู้จักในองค์ประกอบ LInearLayout ....
Joe Healy


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 = "center" ใช้งานได้ดี :) ขอบคุณ!
Amine Soumiaa

1

ตั้งค่าเป็นจริง 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

ใช้

หุ่นยนต์: layout_centerHorizontal = "true"


1
จริง ๆ แล้ว vogon101 นี่เป็นคุณสมบัติที่ถูกต้องใน RelativeLayout :) ไม่ตอบคำถามเพราะผู้ใช้ใช้ LinearLayout และต้องการจัดกึ่งกลางทั้งแนวตั้งและแนวนอน
ซาร่าห์

-7

มันจะง่ายกว่าถ้าใช้เลย์เอาต์แบบสัมพันธ์ แต่สำหรับเลย์เอาต์แบบเส้นตรงฉันมักจะจัดให้อยู่กึ่งกลางโดยทำให้แน่ใจว่าความกว้างตรงกับพาเรนต์:

    android:layout_width="match_parent"

จากนั้นก็ให้ระยะห่างไปทางซ้ายและขวาตามลำดับ

    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.