Android RelativeLayout programaticamente Defina "centerInParent"


139

Eu tenho um RelativeLayout 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>

Quero poder definir programaticamente positiveButtono mesmo efeito que:

android:layout_centerInParent="true"

Como posso fazer isso programaticamente?

Respostas:


401

Completamente não testado, mas isso deve 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);

adicione android:configChanges="orientation|screenSize"dentro de sua atividade em seu manifesto


5
Isso funcionou, mas somente após eu indertet layoutParams.addRule (RelativeLayout.ALIGN_PARENT_RIGHT, 0); antes do centro na regra pai. Obrigado.
Alin

9
Gostaria de acrescentar que isso funcionou para mim também, mas tive que alterar o layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, 0); para layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, -1); na minha situação. Seu aplicativo pode exigir um valor diferente no campo "âncora".
Ben Mc

7
o valor do campo âncora pode ser qualquer coisa, mas 0, para indicar verdadeiro no momento. Fonte tem comparações como if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {onde0 efetivamente avalia parafalse
Dori

2
Como uma pergunta de acompanhamento, alguém sabe se o código nesta resposta pode ser usado em animações? Como por exemplo uma imagem animada de um parente deslocamento à esquerda para uma posição centrada, etc.
Jonny

27
você pode simplesmente usar layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT), não há necessidade do segundo parâmetro, pois você pode verificar a documentação
tarmelop

14

Apenas para adicionar outro sabor da resposta Reuben, uso-o assim para adicionar ou remover esta regra de acordo com uma condição:

    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
A melhor maneira de remover uma regra seria: layoutParams.removeRule (RelativeLayout. CENTER_IN_PARENT);
Zahid Rasheed

5

Eu fiz por

1. centerInParent

2. centerHorizontal

3. centerVertical

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

Como chamar o método:

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

Espero que isso possa ajudá-lo.

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.