이번 강좌에서는 액티비티(Activity), 뷰(View), 레이아웃(Layout)에 대한 이해와 실제 XML 레이아웃 파일을 변경하는 것까지 실습해보도록 하겠습니다.
안드로이드 강좌 4 - 액티비티(Activity), 뷰(View), 레이아웃(Layout)
액티비티, 뷰 그리고 레이아웃
액티비티(Activity)
액티비티는 안드로이드 어플리케이션을 구성하는 가장 기본적인 빌딩블록입니다. 보통의 경우 한 화면을 차지하면서 뷰(View)로 구성된 유저 인터페이스를 화면에 표시하고 사용자의 입력을 처리하는 역할을 합니다.보통의 어플리케이션은 여러 다른 화면을 가지고 있고, 각각의 화면은 다른 액티비티로 구현되어있습니다. 그러므로 화면의 전환이 이루어지게되면 새로운 액티비티가 실행되어 처리하게 됩니다. 어떤 경우는 액티비티 간에 데이터를 서로 주고 받을 수도 있습니다. 새로운 화면이 생성되며 기존의 화면은 스택에 놓여집니다. 각각의 액티비티는 스택을 통해 관리되며 현재 액티비티를 종료하면 그 이전 화면의 액티비티로 돌아가게 됩니다.
뷰(View)
뷰는 화면상에서 유저 인터페이스를 구성하는 기본 빌딩블록입니다. 예를 들어 버튼, 그림, 텍스트, 에디트, 라디오 버튼, 체크박스 등의 기본적인 화면 구성 요소들이 뷰에 포함됩니다. 또한 웹, 맵, 비디오등을 표시하는 고급 구성 요소들도 모두 뷰에 포함됩니다. 뷰의 리스너(Listener) 설정을 통해 이벤트가 발생했을 경우를 처리할 수 있습니다. 예를 들어 버튼이 클릭되었을때 등록된 OnClickListener가 호출되어 처리됩니다.
레이아웃(Layout)
각각의 뷰들을 화면상에 배치하고 구성해주는 것을 레이아웃이라고 합니다. 레이아웃은 보통의 경우 XML을 이용하여 구성합니다. 이전 강좌에서도 리소스(res) 아래의 layout에 myactivity.xml파일을 생성해 준 적이 있지요.
레이아웃 XML
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="안녕하세요 모바일 플레이스 안드로이드 강좌 수강생 여러분" /> </LinearLayout>
(예제 4-1)
(그림 4-1)
먼저 기본으로 생성되는 형태의 레이아웃 XML인 (예제 4-1)을 분석해보겠습니다.
XML파일은 <?xml version="1.0" encoding="utf-8"?> 으로 시작합니다. 그리고 첫번째 태그에는 xmlns:android="http://schemas.android.com/apk/res/android" 라는 XML Namespace가 들어가야 합니다. 레이아웃 XML의 각각의 태그 (LinearLayout, TextView)는 하나의 뷰를 나타내며 연결되는 자바 클래스를 가지고 있습니다. 뷰는 크게 두가지 형태가 존재하는데 버튼, 그림과 같이 실제 기능을 가지고 화면에 표시되는 뷰와 다른 뷰를 포함하고 배치하는 역할을 하는 레이아웃이 있습니다. 레이아웃은 하는 역할은 약간 다르지만 View 클래스를 상속하는 일종의 뷰라고 할 수입니다. 레이아웃 XML의 최상위에는 하나의 뷰만 존재할 수 있습니다. 보통 레이아웃이 들어가서 트리 형태로 다른 뷰들을 배치하고 구성하지만 일반 뷰 하나만 들어있는 레이아웃 XML도 작성할 수 있습니다.
흔히 많이 쓰이는 뷰와 레이아웃은 다음과 같습니다.
뷰 : TextView, Button, ImageView, ListView, EditText, ...
레이아웃 : LinearLayout, RelativeLayout, FrameLayout, AbsoluteLayout, ...
(예제 4-1)은 LinearLayout이 하나의 TextView를 자식으로 가지고 있는 형태입니다. 레이아웃 태그 사이에는 자식 뷰들이 여러 개 들어갈 수 있으며 레이아웃이 레이아웃을 자식으로 가지고 있는 형태도 가능합니다.
View Attribute
XML에서 각각의 뷰가 가지는 속성을 Attribute로 지정해할 수 있습니다. 모든 View가 공통적으로 가지고 있는 Attribute에 대해서 먼저 설명하도록 하겠습니다.
layout_width, layout_height
뷰의 넓이와 높이를 지정합니다. 값으로 fill_parent, wrap_content 혹은 절대적인 수치를 가질 수 있습니다. fill_parent는 컨테이너 즉 부모가 가지는 길이를 모두 채울때 사용하고, wrap_content는 해당 뷰가 그려질 수 있게 필요한 길이만 차지한다는 것을 나타냅니다. 절대적인 값도 넣을 수 있는데 픽셀의 경우 "100px", "100dp", "100sp" 처럼 수치와 단위를 써서 지정해줍니다. 사용할 수 있는 단위는 px, in, mm, pt, dp, sp등이 있는데 주로 dp, sp, px이 주로 쓰입니다. px는 픽셀을 나타내고, dp는 Density-independent Pixel이라고 화면의 밀도의 변화에 독립적으로 1dp는 160dpi의 화면에서의 1px에 대응됩니다. sp는 Scale-independent Pixel 이라고 하여 사용자의 폰트 선호도에 따라 크기가 달라지며 주로 폰트 사이즈 설정에 사용됩니다.
background
배경색 혹은 그림을 지정해줍니다. 색은 #RGB, #ARGB, #RRGGBB, #AARRGGBB 의 포맷으로 지정해 줄 수 있는데 저는 통일성있게 #AARRGGBB포맷만을 주로 사용합니다. 제일 앞에 AA는 투명도를 의미하고 나머지 부분은 RGB값을 의미합니다. 투명도인 AA는 00이 완전 투명, FF가 불투명이 됩니다. 예를 들어 android:background="#FFFF0000"로 지정해주면 빨간색으로 배경을 칠하게 됩니다. 배경그림을 지정해줄 수도 있는데 android:background="@drawable/background_image" 와 같은 형태로 사용가능합니다. 배경 그림은 리소스에 들어있는 jpg, png등의 그림을 배경으로 지정할 때 사용합니다.
visibility
뷰가 화면에 보이게 할지 안보이게 할지를 설정합니다. visible, invisible, gone의 값을 가질 수 있습니다. visible 화면에 보임, invisible 화면에 보이지 않으나 공간은 차지함, gone 화면에 보이지도 않고 공간도 차지 하지 않음.
id
코드에서 해당 뷰를 찾아올 수 있도록 id를 지정합니다. id에 사용에 대해서는 자바코드와 연결하는 부분에서 자세하게 다루도록 하겠습니다.
myactivity.xml을 수정해보면서 각 속성값이 어떻게 실제 화면에 영향을 주는지 확인해보도록 하겠습니다.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#FF888888" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="파랑" android:background="#FF0000FF" /> </LinearLayout>
(예제 4-2)
(그림 4-2)
자 그럼 속성값들을 변경해보도록 하겠습니다. 먼저 배경색을 지정하여 실제 뷰가 차지하는 영역을 살펴보도록 하겠습니다. (예제4-2)에서 LinearLayout은 width, height를 각각 fill_parent로 화면 전체를 채우고 있으며, TextView는 width는 fill_parent로 부모의 길이만큼 모두 차지하지만 height를 wrap_content로 하여 자신이 차지하는 부분만을 높이로 가지는 것을 볼수 있습니다.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="빨강" android:background="#FFFF0000" /> <TextView android:layout_width="wrap_content" android:layout_height="50dp" android:text="녹색" android:background="#FF00FF00" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="파랑" android:background="#FF0000FF" /> </LinearLayout>
(예제 4-3)
(그림 4-3)
자 이번에는 (예제 4-3)에 TextView를 두개 더 추가하여 배경색을 빨강, 녹색, 파랑으로 칠하고 가운데 있는 TextView의 width를 wrap_content로 height를 50dp로 지정해 보았습니다.
(그림 4-4)
(그림 4-5)
(그림 4-4)와 (그림 4-5)는 각각 두번째 TextView에 android:visibility="invisible", android:visibility="gone"으로 설정하여 화면에 보일때와 안보일 때 그리고 영역을 차지 하지 않을 때의 차이를 살펴보실 수 있습니다.
이번 강좌는 여기서 마치겠습니다.
back.png 이미지 파일이 D:\android\workspace\MobilePlace Lecture\res 아래에 있을 때
backgound 속성값 지정은 어떻게 합니까?
android:background="@drawable/back"
하면 아래와 같은 에러가 발생합니다.
[2009-12-24 18:12:32 - MobilePlace Lecture]invalid resource directory name: D:\Lang\android\workspace\MobilePlace Lecture\res/back.png
[2009-12-24 18:12:32 - MobilePlace Lecture] (skipping index file 'D:\Lang\android\workspace\MobilePlace Lecture\res\drawable-hdpi\Thumbs.db')
[2009-12-24 18:12:32 - MobilePlace Lecture] (skipping index file 'D:\Lang\android\workspace\MobilePlace Lecture\res\drawable-ldpi\Thumbs.db')
[2009-12-24 18:12:32 - MobilePlace Lecture] (skipping index file 'D:\Lang\android\workspace\MobilePlace Lecture\res\drawable-mdpi\Thumbs.db')
[2009-12-24 18:12:32 - MobilePlace Lecture] (skipping index file 'D:\Lang\android\workspace\MobilePlace Lecture\res\Thumbs.db')
main.xml 에
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ff0000"
android:gravity="center"
android:text="Hello" />
<EditText id = "@+id/entry"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:background = "@android:drawable/editbox_background" />
</LinearLayout>
이렇게 넣으면 EditText 부분에서 에러가 납니다.
무엇때문에 그런가요??
안녕하세요 글 잘보고있습니다
그런데 제가 텍스트 구현을하다가 자꾸 (error: Invalid start tag LinearLayout)라는 에러가뜨느데
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<EditText id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
/>
</LinearLayout>
저의 짧은 지식으로 보기에는 딱히 잘못한 것 이 없는거 같은데 왜 오류가 뜨는지 알려주시면 감사하겠습니다
안드로이드 강좌 정말 쉽게 설명해 주셔서 재밌게 따라하고 있습니다.
기초적인 내용들을 익히는데 있어서 정말 도움되는군요. 정말 감사드립니다.
그런데 이 강좌란의 댓글 적는 곳이 QnA 게시판 처럼 변해버리는 것 같아서
조금 안타깝네요. 막히는 것이 있으면 당연히 그 원인과 해결방법이 궁금하겠지만
이런 식으로 "XX해보니 안되네요. 왜죠?" 라는 식의 수동적인 자세는 좋지 않다고 봅니다.
책도 있고.. 도움말도 있고.. 구글링도 있으니.. 충분히 공부하고 찾아보고..
그래도 해결안되면 전문가에게 도움을 구하는 게 더 좋지 않을까.. 생각해봅니다.
그냥 그렇다구요.. -_-;; 휘리릭~~
회색님 화이팅~!!
이부분에서
<EditText
android:id="@+id/entry"
이렇게 해야되지 않을까요?
그냥 id속성은 없구요 android:id 속성이 있습니다.
물론 Manifest 관련 부분에서 봤지만.. 레이아웃에도 적용되리라 생각됩니다.
Except for some attributes of the root
<manifest>
element, all attribute names begin with an android:
prefix — for example, android:alwaysRetainTaskState
. Because the prefix is universal, the documentation generally omits it when referring to attributes by name.이건 어떻게 해석을 해야되는건지요.. 알파벳 a~z 사이에 하나 0~9숫자하나를 포함하고 "_"를 포함 해야한다는건가요??
이번 강좌 부터 컴파일시 myactivity.out.xml 이란 파일이 생성되며
The document is empty.
Right mouse click here to insert content. 라는 문구가 생깁니다 왜 안될까요 ㅠㅠ
소스도 고대로 치고 에러도 없게 햇는데 에뮬레이터 상으론 안바뀌는데 어떻ㅅ게 해야할까요ㅠㅠ
main에 text 를 수정해서 그냥 임의로 "이건 테스트입니다 뜨려나?" 이렇게 넣고 실행을 해 봣는데
Hello World, Main 이렇게만 뜨네요...이게 어디를 수정해야 바뀌는건지..고수님들 답변 부탁드릴꼐욤..ㅠ.ㅠ
main.xml에 EditText를 다음과 같이 추가해서 컴파일 했는데... 보이지가 않습니다.
왜 그런거죠? ㅠㅠ
<EditText id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="visible"
android:background="@android:drawable/editbox_background"/>