Skip to content
This repository has been archived by the owner on Apr 25, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (41 loc) · 2 KB

3차 강의 계획서.md

File metadata and controls

51 lines (41 loc) · 2 KB
  1. xml,layout에 대해서 알아본다. (50분)

    • xml? (10분)

      • xml 이라는 언어
      • 태그를 이용한 내용 작성
        • ex) <Text> hello </Text>
    • layout (40분)

      • 앱에서 눈에 보이는 화면
      • xml을 통한 안드로이드 레이아웃의 구조
        <Layout xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:app="http://schemas.android.com/apk/res-auto"
         android:layout_width="match_parent"
         android:layout_height="match_parent">
        
        <!--something views-->
        
        </Layout>
      • width, height(가로, 세로) 에 들어가는 속성 값
        • ex) match_parent, wrap_content 등등..
    • 쉬는 시간 (10분)

  2. LinearLayout, RelativeLayout 에 대해 배운다 (40분)

    • LinearLayout (20분)

      • LinearLayout의 특징 설명
        • 절대적인 기준
        • orientation이라는 정렬 속성(vertical, horizental)
        • weight 라는 가중치 속성
    • RelativeLayout (20분)

      • RelativeLayout의 특징 설명
        • 관계적, 상대적인 기준
        • 어떤 뷰를 기준으로 상대적으로 이동
    • 쉬는 시간 (10분)

  3. View에 대한 이해 및 간단한 레이아웃 구성해보기 (70분)

    • View (30분)

      • 전 시간들에서 배운 레이아웃 속에 들어가는 요소들
      • View, TextView, ImageView, EditText 등 대표적인 View 및 속성
        • ex) TextView의 text속성, ImageView의 src속성 등등..
    • 나만의 프로필 구성해보기 (40분) - 전체 멘토링

      • 나의 프로필에 들어갈 내용 정하기 (5분)
      • 어떤 모양의 프로필을 만들지 생각해보기 (10분)
      • Linear, Relative 중 내가 생각한 모양에 맞는 Layout을 선택, 여러 뷰를 이용해 프로필 짜기 (25분)