Download presentation
Presentation is loading. Please wait.
1
UNIT 07 그림책 만들기 1/2 로봇 SW 콘텐츠 연구원 조용수
2
학습 목표 Button Widget 활용 Widget Id 설정 Resource : R View 연결 Layout 제작
3
미션
4
프로젝트 생성
5
프로젝트 생성
6
실습 1: 프로젝트 생성 실습용 프로젝트 생성
7
버튼 Object View TextView Button
8
버튼 글자와 배경 text background
<LinearLayout xmlns:android=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <Button android:layout_width="200dp" android:layout_height="50dp" /> </LinearLayout>
9
버튼 글자와 배경 text background
<LinearLayout xmlns:android=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <Button android:layout_width="200dp" android:layout_height="50dp" /> </LinearLayout>
10
나는 ???입니다 id <RelativeLayout xmlns:android=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" /> </RelativeLayout>
11
R.java
12
뷰 찾기 findViewById
13
실습 1: 버튼 연결 LinearLayout Button 2개와 TextView 추가 Java 소스와 연결
14
Layout 제작 필요한 Widget ImageView Button : 이전 TextView : Page 표시
15
Layout 제작 : Resource 추가 필요한 Resource 를 복사
16
Layout 제작 : Resource 추가 필요한 Resource 를 복사
17
Layout 분석 Vertical ImageView Button TextView Button Horizontal
18
Layout 분석 Vertical ImageView Button TextView Button Horizontal
19
실습
20
실습 <LinearLayout xmlns:android=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <ImageView android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="center_horizontal" />
21
실습 <LinearLayout android:orientation="horizontal"
android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="New Button" <TextView android:layout_weight="1" android:gravity="center" android:text="New Text" </LinearLayout>
Similar presentations