LinearLayout 가운데정렬

<LinearLayout
   android:layout_width="match_parent"
   android:layout_height="130dp"
   android:layout_marginTop="50dp"
   android:gravity="center_horizontal"
   android:weightSum="10"
   >
   <ImageView
      style="@style/SecurinetLoginLogoWeight"
      android:layout_height="match_parent"
      android:src="@drawable/sequrinet_login_logo" />
</LinearLayout>
  • android:gravity="center_horizontal"

'Android > Design' 카테고리의 다른 글

Custom View 만들기  (0) 2022.05.18
Toolbar 위젯 사용  (0) 2022.05.18
ImageView의 이미지 크롭방식  (0) 2022.05.17
style 속성 활용 : android 속성값 정의 재사용  (0) 2022.05.17
FramLayout  (0) 2022.05.17

+ Recent posts