Android RelativeLayoutがプログラムで「centerInParent」を設定する


139

私はこのようなRelativeLayoutを持っています:

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

プログラム的positiveButtonに同じ効果を設定できるようにしたい:

android:layout_centerInParent="true"

これをプログラムでどのように作成できますか?

回答:


401

完全にテストされていませんが、これうまくいくはずです:

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

android:configChanges="orientation|screenSize"あなたのマニフェストにあなたの活動の中に追加してください


5
それは機能しましたが、後で私はlayoutParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT、0);を確認しました。親ルールの中央の前。ありがとうございました。
アリン

9
これも私にとってはうまくいったことを追加したいのですが、layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT、0);を変更する必要がありました。to layoutParams.addRule(RelativeLayout.CENTER_IN_PARENT、-1); 私の状況では。アプリの「アンカー」フィールドに別の値が必要な場合があります。
Ben Mc

7
アンカーフィールドの値は、現在trueを示す0以外の任意の値にすることができます。ソースは、効果的に評価されるif (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {場所のような比較を持っています0false
Dori

2
追加の質問として、この回答のコードがアニメーションで使用できるかどうか誰かが知っていますか?たとえば、画像を相対的な左オフセットから中央位置にアニメーション化するなど
Jonny


14

Reuben応答から別のフレーバーを追加するために、次のように使用して、条件に従ってこのルールを追加または削除します。

    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
ルールを削除する最良の方法は次のとおりです。layoutParams.removeRule(RelativeLayout。CENTER_IN_PARENT);
Zahid Rasheed 2016年

5

私はしました

1. centerInParent

2. centerHorizo​​ntal

3. centerVertical

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

メソッドの呼び出し方法:

centerInParent-true

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, true);

centerInParent-false

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, false);

centerHorizo​​ntal-true

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, true);

centerHorizo​​ntal-false

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, false);

centerVertical-true

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, true);

centerVertical-false

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, false);

これがお役に立てば幸いです。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.