Ich habe ein RelativeLayout wie folgt:
<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>
Ich möchte in der Lage sein, programmgesteuert positiveButton
den gleichen Effekt zu erzielen wie:
android:layout_centerInParent="true"
Wie kann ich das programmatisch machen?
if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {
wo0
effektiv zu bewertenfalse
Um der Reuben-Antwort einen weiteren Geschmack hinzuzufügen, verwende ich sie wie folgt, um diese Regel gemäß einer Bedingung hinzuzufügen oder zu entfernen:
quelle
Ich habe getan für
1. centerInParent
2. centerHorizontal
3. centerVertical
mit wahr und falsch .So rufen Sie die Methode auf:
centerInParent - wahr
centerInParent - false
centerHorizontal - wahr
centerHorizontal - false
centerVertical - wahr
centerVertical - false
Hoffe das würde dir helfen.
quelle