Android RelativeLayout programowo ustawia „centerInParent”

139

Mam RelativeLayout taki jak ten:

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

Chcę móc programowo ustawić positiveButtontaki sam efekt, jak:

android:layout_centerInParent="true"

Jak mogę to zrobić programowo?

Alin
źródło

Odpowiedzi:

401

Całkowicie niesprawdzone, ale to powinno działać:

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

dodaj android:configChanges="orientation|screenSize"wewnątrz swojej aktywności w swoim manifeście

Reuben Scratton
źródło
5
To zadziałało, ale dopiero po tym, jak indertet layoutParams.addRule (RelativeLayout.ALIGN_PARENT_RIGHT, 0); przed środkiem w regule nadrzędnej. Dziękuję Ci.
Alin
9
Chciałbym dodać, że to też zadziałało, ale musiałem zmienić layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, 0); do layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, -1); w mojej sytuacji. Twoja aplikacja może wymagać innej wartości w polu „kotwica”.
Ben Mc,
7
wartość pola kotwicy może być dowolna inna niż 0, aby obecnie oznaczać prawdziwość. Źródło ma porównania, na przykład if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {gdzie 0skutecznie oceniafalse
Dori
2
Jako pytanie uzupełniające, czy ktoś wie, czy kod w tej odpowiedzi może być użyty w animacjach? Na przykład animuj obraz od względnego lewego przesunięcia do pozycji wyśrodkowanej itp.
Jonny
27
możesz po prostu użyć layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT), nie ma potrzeby stosowania drugiego parametru, jak możesz sprawdzić w dokumentacji
tarmelop
14

Aby dodać inny smak z odpowiedzi Reubena, używam go w ten sposób, aby dodać lub usunąć tę regułę zgodnie z warunkiem:

    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);
    }
Juan Saravia
źródło
3
Najlepszym sposobem na usunięcie reguły byłoby: layoutParams.removeRule (RelativeLayout. CENTER_IN_PARENT);
Zahid Rasheed
5

Zrobiłem dla

1. centerInParent

2. centerHorizontal

3. centerVertical

z prawdą i fałszem .

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

Jak wywołać metodę:

centerInParent - prawda

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

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, true);

centerVertical - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, false);

Mam nadzieję, że to ci pomoże.

Hiren Patel
źródło