Android RelativeLayout โดยทางโปรแกรมตั้ง“ centerInParent”


139

ฉันมีความสัมพันธ์แบบนี้:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dip">

    <Button
        android:id="@+id/negativeButton"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:textSize="20dip"
        android:textColor="#ffffff"
        android:layout_alignParentLeft="true"
        android:background="@drawable/black_menu_button"
        android:layout_marginLeft="5dip"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"/> 

    <Button
        android:id="@+id/positiveButton"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:textSize="20dip"
        android:textColor="#ffffff"
        android:layout_alignParentRight="true"
        android:background="@drawable/blue_menu_button"
        android:layout_marginRight="5dip"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"/>
</RelativeLayout>

ฉันต้องการที่จะสามารถตั้งค่าทางโปรแกรมสำหรับpositiveButtonผลเช่นเดียวกับ:

android:layout_centerInParent="true"

ฉันจะทำให้โปรแกรมเป็นแบบนี้ได้อย่างไร

คำตอบ:


401

ยังไม่ได้ทดสอบอย่างสมบูรณ์ แต่ควรใช้งานได้:

View positiveButton = findViewById(R.id.positiveButton);
RelativeLayout.LayoutParams layoutParams = 
    (RelativeLayout.LayoutParams)positiveButton.getLayoutParams();
layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);
positiveButton.setLayoutParams(layoutParams);

เพิ่มandroid:configChanges="orientation|screenSize"ภายในกิจกรรมของคุณในรายการของคุณ


5
ใช้งานได้ แต่หลังจากที่ฉัน indertet layoutParams.addRule (RelativeLayout.ALIGN_PARENT_RIGHT, 0); ก่อนที่จะรวมศูนย์ในกฎหลัก ขอบคุณ.
Alin

9
ฉันต้องการเพิ่มว่าสิ่งนี้ได้ผลสำหรับฉันเช่นกัน แต่ฉันต้องเปลี่ยน layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, 0); เพื่อ layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, -1); ในสถานการณ์ของฉัน แอปของคุณอาจต้องการค่าที่แตกต่างในฟิลด์ "จุดยึด"
Ben Mc

7
ค่าของฟิลด์จุดยึดสามารถเป็นอะไรก็ได้ยกเว้น 0เพื่อสื่อความหมายจริงในปัจจุบัน ที่มามีการเปรียบเทียบเช่นif (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {ที่0ประเมินได้อย่างมีประสิทธิภาพเพื่อfalse
Dori

2
ไม่มีใครตามคำถามที่ตามมารู้ว่ารหัสในคำตอบนี้สามารถใช้ในการเคลื่อนไหว? เหมือนเช่นภาพเคลื่อนไหวภาพจากญาติซ้ายชดเชยไปยังตำแหน่งที่เป็นศูนย์กลาง ฯลฯ
จอนนี่

27
คุณสามารถใช้ layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT) โดยไม่จำเป็นต้องมีพารามิเตอร์ตัวที่สองในขณะที่คุณสามารถตรวจสอบในเอกสารประกอบ
tarmelop

14

เพียงเพิ่มรสชาติอื่นจากการตอบกลับของ Reuben ฉันใช้มันเพื่อเพิ่มหรือลบกฎนี้ตามเงื่อนไข:

    RelativeLayout.LayoutParams layoutParams =
            (RelativeLayout.LayoutParams) holder.txtGuestName.getLayoutParams();

    if (SOMETHING_THAT_WOULD_LIKE_YOU_TO_CHECK) {
        // if true center text:
        layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT);
        holder.txtGuestName.setLayoutParams(layoutParams);
    } else {
        // if false remove center:
        layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT, 0);
        holder.txtGuestName.setLayoutParams(layoutParams);
    }

3
วิธีที่ดีที่สุดในการลบกฎคือ: layoutParams.removeRule (RelativeLayout. CENTER_IN_PARENT);
Zahid Rasheed

5

ฉันทำไปแล้ว

1. centerInParent

2. ศูนย์แนวนอน

3. ศูนย์แนวตั้ง

กับความจริงและเท็จ

private void addOrRemoveProperty(View view, int property, boolean flag){
    RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
    if(flag){
        layoutParams.addRule(property);
    }else {
        layoutParams.removeRule(property);
    }
    view.setLayoutParams(layoutParams);
}

วิธีการโทร:

centerInParent - จริง

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, true);

centerInParent - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, false);

ศูนย์แนวนอน - จริง

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, true);

ศูนย์แนวนอน - เท็จ

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, false);

centerVertical - จริง

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, true);

centerVertical - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, false);

หวังว่านี่จะช่วยคุณได้

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