본문 바로가기

android

[j android] 버튼 정중앙에 배치

728x90
반응형

 - 버튼을 정중앙에 배치하기 위해 RelativeLayout을 사용한다.

 - 버튼 속성에 android:layout_centerInParent="true" 를 추가한다.

 

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

  <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"/>

</RelativeLayout>

 

728x90
반응형