티스토리 뷰
반응형
Linear Layout을 사용해서 6개의 블록을 만들어봅시다.
바로 코드를 확인합니다.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#F44336"
android:text="블록1"
android:textColor="@color/black"
android:textSize="50dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#9C27B0"
android:text="블록2"
android:textColor="@color/black"
android:textSize="50dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#FFEB3B"
android:text="블록3"
android:textColor="@color/black"
android:textSize="50dp" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#2196F3"
android:text="블록4"
android:textColor="@color/black"
android:textSize="50dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#8BC34A"
android:text="블록5"
android:textColor="@color/black"
android:textSize="50dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#009688"
android:text="블록6"
android:textColor="@color/black"
android:textSize="50dp" />
</LinearLayout>
</LinearLayout>
에뮬레이터 실행 결과
우선 부모 뷰의 Linear Layout 중에서 Orientation 속성을 Horizontal로 해주면, 수평 방향으로 전체적인 방향이 설정됩니다. 부모 뷰 안에 Linear Layout으로 이루어진 자식 뷰 하나를 생성합니다.
해당 자식 뷰가 전체적인 화면 UI를 차지하도록, width=0dp, height=match_parent으로 설정합니다. 만약 width="match_parent"로 설정하면, 두 번째 Linear Layout 자식 뷰에 포함된 블록 3~6이 보이지 않게 됩니다.
weight은 1로 설정합니다.
반응형
첫 번째 Linear Layout 부모 뷰에 TextView 자식 뷰 3개를 넣어줍니다. weight은 1로 설정하여 전체 비율 1에서 자식 3명이 각각 1씩 할당받도록 지정합니다.
두 번째 Linear Layout 부모 뷰 안에도 마찬가지로 TextView 자식 뷰 3개를 넣어줍니다.
반응형
'Android App Coding' 카테고리의 다른 글
상대적 레이아웃 2편 Relative Layout (0) | 2021.07.07 |
---|---|
상대적 레이아웃 Relative Layout (0) | 2021.07.07 |
선형 레이아웃 Linear Layout (0) | 2021.07.07 |
뷰콤포넌트 2편 View Component (0) | 2021.07.07 |
뷰콤포넌트 View Component (0) | 2021.07.07 |
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 2007년 사건사고
- 안드로이드 어댑터
- ToDo List 앱 만들기
- 탭레이아웃
- 미제사건
- 자바스크립트 배열
- bmi 계산기 만들기
- lazy init
- 인텐트
- android adapter
- 안드로이드 앱 만들기
- 안드로이드 프로젝트
- 대한민국 미제사건
- 리스트뷰
- 안드로이드 스튜디오 에러
- Bmi Calculator
- 리사이클러뷰
- view binding
- 선형 레이아웃
- 상대적 레이아웃
- addView
- tabLayout
- RecyclerView
- 뷰 바인딩
- 애드뷰
- 2019년 사건사고
- findViewById
- notifyDataSetChanged
- 메소드 오버라이딩
- 2021년 사건사고
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함