Android RelativeLayout establece programáticamente "centerInParent"

139

Tengo un diseño relativo como este:

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

Quiero poder establecer programáticamente positiveButtonel mismo efecto que:

android:layout_centerInParent="true"

¿Cómo puedo hacer esto programáticamente?

Alin
fuente

Respuestas:

401

Completamente no probado, pero esto debería funcionar:

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

agregue android:configChanges="orientation|screenSize"dentro de su actividad en su manifiesto

Reuben Scratton
fuente
55
Eso funcionó, pero solo después de que inserté layoutParams.addRule (RelativeLayout.ALIGN_PARENT_RIGHT, 0); antes del centro en la regla principal. Gracias.
Alin
9
Me gustaría agregar que esto también funcionó para mí, pero tuve que cambiar layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, 0); a layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, -1); en mi situacion Su aplicación puede requerir un valor diferente en el campo "ancla".
Ben Mc
77
el valor del campo de ancla puede ser cualquier cosa menos 0 para significar verdadero en la actualidad. Source tiene las comparaciones como if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {donde 0efectivamente se evalúa afalse
Dori
2
Como pregunta complementaria, ¿alguien sabe si el código de esta respuesta se puede usar en animaciones? Por ejemplo, animar una imagen desde un desplazamiento izquierdo relativo a una posición centrada, etc.
Jonny
27
simplemente puede usar layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT), no hay necesidad del segundo parámetro, ya que puede consultar la documentación
tarmelop
14

Solo para agregar otro sabor de la respuesta de Rubén, lo uso de esta manera para agregar o eliminar esta regla según una condición:

    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
fuente
3
La mejor manera de eliminar una regla sería: layoutParams.removeRule (RelativeLayout. CENTER_IN_PARENT);
Zahid Rasheed
5

He hecho por

1. centerInParent

2. centerHorizontal

3. centerVertical

con la verdadera y falsa .

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

Cómo llamar al método:

centerInParent: verdadero

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, true);

centerInParent: falso

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, false);

centerHorizontal - verdadero

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, true);

centerHorizontal - false

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, false);

centerVertical - verdadero

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, true);

centerVertical - falso

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, false);

Espero que esto te ayude.

Hiren Patel
fuente