1 / 11

UI 만들기 (XML) 오씨

UI 만들기 (XML) 오씨. 차례. 안드로이드 개발 방법 안드로이드 소스 구성 UI 구성 (XML). 안드로이드 개발 방법. JAVA 를 이용한 개발 방법 (SDK) JAVA 코딩 , XML 코딩 C++ 를 이용한 개발방법 (NDK) C++ 코딩 , 불러오는 JAVA 코딩 (JNI) 웹을 이용한 개발 방법 ( 모바일 웹 ) 안드로이드에서 하는 것 없음 ( 브라우저 접속 ) JAVAscript 를 이용한 개발 방법 ( 웹뷰 )

Download Presentation

UI 만들기 (XML) 오씨

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. UI 만들기(XML) 오씨

  2. 차례 • 안드로이드 개발 방법 • 안드로이드 소스 구성 • UI 구성 (XML)

  3. 안드로이드 개발 방법 • JAVA를이용한 개발 방법(SDK) • JAVA 코딩, XML 코딩 • C++를이용한 개발방법 (NDK) • C++ 코딩, 불러오는 JAVA 코딩(JNI) • 웹을 이용한 개발 방법(모바일웹) • 안드로이드에서 하는 것 없음(브라우저 접속) • JAVAscript를 이용한 개발 방법(웹뷰) • HTML,JSP 코딩가능 (시스템 개발은 힘듬)

  4. 안드로이드 소스구성 • 프로젝트명 • SRC: 자바소스코드 보관 • GEN:리소스 주소 명시 파일 • Android 2.2 : 안드로이드 플랫폼 라이브러리

  5. 안드로이드 소스구성 • Assets :안드로이드xml을 바이너리로 패키징 한다 • Res : 리소스를 담고 있는다. • Android manifast.xml: 안드로이드의 권한 및 액티비티및 환경을 관리한다. • Default.properties 안드로이드 버전내용을 담고있다.

  6. UI • XML 소스위치 • Res->layout • Drawable은 그림파일 • 코딩방법 • 드레그 기법 • 코딩

  7. UI 구성 계층구조로 구성 디자인은 드래그 형식 각 아이템 더블 클릭 시 속성 표시

  8. UI 구성 layout • 컨테이너 • LinearLayout • FrameLayout • RelativeLayout • AbsoluteLayout

  9. 속성들~(properties) • Id • Gravity(숫자입력시 가중치) • Layout height (Warp_comtent,fill,match) • Background • Orientation • Text • padding

  10. 자주쓰는UI • TextView • EditView • Button • ImageView

  11. 만들어봅시다~

More Related