-
View가 추가된 순서대로 가로나 세로 방향으로 나열되게 한다.
Api14에서 추가 됨.TableLayout과 주요 차이점으로 View의 개수를 예상할 수 없거나 가변적일 때 GridLayout이 유리하다.
orientation
View를 채워나갈 진행 방향을 정한다.
방향 값: vertical, horizontal
rowCount, columnCount
orientation의 진행방향으로 채워나가며 한줄에 몇개를 보여줄 지 결정하는 값.
orientation의 진행 방향 값에 따라 맞춰 사용해야 한다.
vertical일때 rowCount를 사용.
horizontal일때 columnCount를 사용.자식View의 속성
layout_column: View가 위치할 열의 위치
layout_column: View가 위치할 행의 위치
layout_columnSpan: 가로 방향으로 여러 열을 하나의 View가 차지하고자 할 때.
layout_rowSpan: 세로 방향으로 여러 행을 하나의 View가 차지하고자 할 때.
layout_gravity: 하나의 열 내에서 View의 정렬 위치 지정.
'Android' 카테고리의 다른 글
Android - BitmapFactory 이미지 크기 조정 (0) 2020.07.19 Android - local DBMS, Realm (0) 2020.07.19 Android - local DBMS, SQLite (0) 2020.07.19 Android - ConstrainLayout (0) 2020.07.19 Android - TableLayout (0) 2020.07.19 Android - View Attributes(속성) (0) 2020.07.18 AndroidStudio - multiple instances of Android Studio (0) 2020.07.18 AndroidStudio - Auto Import (0) 2020.07.18