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 positiveButton
o mesmo efeito que:
android:layout_centerInParent="true"
Como posso fazer isso programaticamente?
if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {
onde0
efetivamente avalia parafalse
Apenas para adicionar outro sabor da resposta Reuben, uso-o assim para adicionar ou remover esta regra de acordo com uma condição:
fonte
Eu fiz por
1. centerInParent
2. centerHorizontal
3. centerVertical
com verdadeiro e falso .Como chamar o método:
centerInParent - true
centerInParent - false
centerHorizontal - true
centerHorizontal - false
centerVertical - true
centerVertical - false
Espero que isso possa ajudá-lo.
fonte