728x90
반응형
뷰(View)
- 안드로이드에서 눈에 보이는 모든 요소를 View 라고 부른다
- 개발자가 배치하는 모든 View 들은 Class로 제공되는데 모두 View라는 클래스를 상속받고 있다
- View 클래스는 모든 UI 요소들의 부모클래스로써 Widget과 Layout으로 나뉜다
Layout
- Container, View Group 이라고 부르기도 한다.
- 다른 View 들을 포함 하고(Container) 내부의 View를 통합 관리하고(View Group) 내부 View 들이 배치되는 모양을 결정(Layout) 한다.
Widget
- 문자열 입력, 문자열 출력 등 어떤 기능을 가지고 있고 사용자와 상호 작용을 하는 View들을 통칭해서 Widget이라고 부른다.
화면 만들기
- 안드로이드는 화면에 layout 을 배치하고 그 안에 다른 layout 이나 widget을 배치하여 화면의 모양을 만든다
- 이렇게 만들어진 화면은 모두 객체로 생성되므로 개발자는 이 객체들을 이용해 코드에서 필요한 작업을 할 수 있다
View 의 주요 속성
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="vertical"
tools:context=".MainActivity">
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
- id : xml이나 코드에서 View를 지칭하기 위해 사용하는 속성
- layout_width : View의 가로 길이
- layout_height : View의 세로 길이
- layout_margin : View의 외부 여백
- padding : View의 내부 여백
- background : View의 배경 지정
그래서 총 정리하자면, 뷰(View)란...?
- 안드로이드에서 눈에 보이는 모든 요소들을 View 라고 부른다
- View는 Widget과 Layout(Container, View Group)으로 나뉜다
반응형
'Android' 카테고리의 다른 글
[Android] TableLayout (0) | 2021.12.21 |
---|---|
[Android] FrameLayout (0) | 2021.12.06 |
[Android] LinearLayout (0) | 2021.12.05 |
안드로이드 동작 원리 (0) | 2021.12.05 |
Android(안드로이드)란? (0) | 2021.12.04 |