Android RelativeLayout Imposta a livello di codice "centerInParent"


139

Ho un RelativeLayout come questo:

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

Voglio essere in grado di impostare programmaticamente positiveButtonlo stesso effetto di:

android:layout_centerInParent="true"

Come posso farlo programmaticamente?

Risposte:


401

Completamente non testato, ma dovrebbe funzionare:

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

aggiungi android:configChanges="orientation|screenSize"all'interno della tua attività nel tuo manifest


5
Funzionava, ma solo dopo che indertet layoutParams.addRule (RelativeLayout.ALIGN_PARENT_RIGHT, 0); prima del centro nella regola padre. Grazie.
Alin,

9
Vorrei aggiungere che ha funzionato anche per me, ma ho dovuto cambiare layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, 0); to layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, -1); nella mia situazione. La tua app potrebbe richiedere un valore diverso nel campo "anchor".
Ben Mc

7
il valore del campo di ancoraggio può essere tutt'altro che 0 per indicare vero al momento. La fonte ha i confronti come if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {dove 0valuta efficacementefalse
Dori,

2
Come domanda di follow-up qualcuno sa se il codice in questa risposta può essere usato nelle animazioni? Come ad esempio animare un'immagine da un offset sinistro relativo a una posizione centrata ecc.
Jonny il

27
puoi semplicemente usare layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT), non è necessario il secondo parametro, come puoi verificare nella documentazione
tarmelop,

14

Solo per aggiungere un altro sapore dalla risposta di Reuben, lo uso in questo modo per aggiungere o rimuovere questa regola in base a una condizione:

    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
Il modo migliore per rimuovere una regola sarebbe: layoutParams.removeRule (RelativeLayout. CENTER_IN_PARENT);
Zahid Rasheed,

5

Ho fatto per

1. centerInParent

2. centerHorizontal

3. centerVertical

con vero e falso .

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);
}

Come chiamare il metodo:

centerInParent - true

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, true);

centerInParent - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, false);

centerHorizontal - true

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, true);

centerHorizontal - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, false);

centerVertical: true

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, true);

centerVertical - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, false);

Spero che questo ti possa aiutare.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.