Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Cookie
- express
- websocket
- CSS
- SQL
- JSP
- Ajax
- tiles.xml
- 암호화
- node.js
- model1
- 비트코인
- 도커
- PL/SQL
- AWS
- phaser
- HTML
- Servlet
- 블록체인
- 웹소켓
- jQuery
- 배포
- 웹게임
- docker
- EC2
- 알고리즘
- JavaScript
- Spring
- autowired
- RDS
Archives
- Today
- Total
記錄
레이아웃을 활용한 다양한 뷰 배치 - TableLayout, GridLayout 본문
TableLayout
뷰를 테이블 구조로 배치하는 레이아웃. TableRow로 행을 관리한다.
예제
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context="com.kimjungkwon.layouttestlast.MainActivity">
<TableRow>
<Button android:text="7"/>
<Button android:text="8"/>
<Button android:text="9"/>
</TableRow>
<TableRow>
<Button android:text="4"/>
<Button android:text="5"/>
<Button android:text="6"/>
</TableRow>
<TableRow>
<Button android:text="1"/>
<Button android:text="2"/>
<Button android:text="3"/>
</TableRow>
</TableLayout>
GridLayout
TableLayout과 비슷하지만 TableRow를 굳이 만들어주지 않아도 된다. 또 LinearLayout처럼 가로나 세로 방향으로 나열되지만 GridLayout은 columnCount를 통해서 자동 개행 기능을 사용할 수 있다. 단, orientation이 vertical인 경우에는 rowCount로 자동 개행을 제어한다. 또 rowSpan과 columnSpan을 통해서 원하는 공간을 비울 수도 있다.
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:columnCount="2"> // 2개의 버튼이 나오면 자동으로 개행하게 만든다
<Button android:text="1"/>
<Button android:text="2"/>
<Button android:text="3"/>
<Button android:text="4"/>
<Button android:text="5"/>
<Button android:text="6"/>
</GridLayout>
자동으로 정해진 버튼 수를 채우면 개행이 된 모습
계산기 실습
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
<LinearLayout
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:rowCount="4">
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="7" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="4" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="1" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="." />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="8" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="5" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="2" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="0" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="9" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="6" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="3" />
<Button
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="=" />
</GridLayout>
<GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:rowCount="5">
<Button
android:text="DEL"
android:textSize="12dp" />
<Button android:text="+" />
<Button
android:text="x"
android:textSize="9dp" />
<Button
android:text="-"
android:textSize="20dp" />
<Button android:text="/" />
</GridLayout>
</LinearLayout>
</LinearLayout>
'Mobile > Android' 카테고리의 다른 글
사용자 알림 효과 -다이얼로그(토스트, 알림창, 목록 등) (0) | 2018.01.20 |
---|---|
사용자 알림 효과 -진동울리기, 알림음 (0) | 2018.01.13 |
레이아웃을 활용한 다양한 뷰 배치 - FrameLayout (0) | 2018.01.11 |
레이아웃을 활용한 다양한 뷰 배치 - RelativeLayout, ConstraintLayout (0) | 2018.01.11 |
레이아웃을 활용한 다양한 뷰 배치 - LinearLayout (0) | 2018.01.11 |
Comments