반응형

XML에서 gravity를 이용해 요소를 가운데 배치하기

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center">
        <ImageView
            android:id="@+id/test"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:src="@mipmap/ic_launcher" />
    </LinearLayout>

LinearLayout 안에 요소를 넣고

LinearLayout의 gravity property를 center로 주면

요소를 가운데로 배치할 수 있다

반응형

+ Recent posts