프로그래밍 방식으로 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); 부모 규칙의 중심 앞에. 감사합니다.
Alin

9
나는 이것이 나에게도 효과가 있다고 덧붙이고 싶지만 layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, 0); layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT, -1); 내 상황에서. 앱의 "앵커"필드에 다른 값이 필요할 수 있습니다.
벤 맥

7
앵커 필드 값은 현재 true를 나타내는 0 이외의 값일 수 있습니다 . 소스와 같은 비교가 if (rules[CENTER_IN_PARENT] != 0 || rules[CENTER_HORIZONTAL] != 0) {어디에 0효과적으로 평가false
도리

2
후속 질문 으로이 답변의 코드를 애니메이션에 사용할 수 있는지 아는 사람이 있습니까? 예를 들어, 상대적인 왼쪽 오프셋에서 중심 위치 등으로 이미지에 애니메이션을 적용합니다.
Jonny

27
당신은 간단하게 layoutParams.addRule (RelativeLayout.CENTER_IN_PARENT)를 사용할 수 있습니다. 문서
tarmelop

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

5

나는 해냈다

1. centerInParent

2. 센터 수평

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

addOrRemoveProperty(mView, RelativeLayout.CENTER_IN_PARENT, false);

centerHorizontal-true

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, true);

centerHorizontal-거짓

addOrRemoveProperty(mView, RelativeLayout.CENTER_HORIZONTAL, false);

centerVertical-참

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, true);

centerVertical-거짓

addOrRemoveProperty(mView, RelativeLayout.CENTER_VERTICAL, false);

이것이 도움이되기를 바랍니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.