일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 청주
- #청주주님의교회
- 프로그래밍
- Intent
- 에디터
- JavaScript
- Activity
- java 8
- Java
- 글쓰기
- 웹개발
- 아이콘
- 회원가입
- 제이쿼리
- Resources
- Spring
- 주님의교회
- Selector
- CSS
- 게시판
- 안드로이드
- 자바
- 영성
- 안드로이드 AVD
- TinyMCE
- jQuery
- 생명주기
- androidstudio
- Android
- 인텐트
- Today
- Total
공부하는 블로그
(안드로이드 프로그래밍) Linear Layout 실습 1 본문
<완성>
위 화면과 같은 화면을 만들어보자.
Lesson2
먼저 drawable 폴더에 미리 이미지를 추가한다.
<?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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ktds.lesson02.MainActivity">
</LinearLayout>
이모양이 기본 모양이다.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/fruits_apple"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Apple"
android:textSize="30sp"
android:layout_marginLeft="16dp"
android:layout_gravity="center"/>
</LinearLayout>
한세트 완성!
세트를 동일하게 복사해서 완성하면
다음과 같은 모양을 완성할 수 있다.
'Develop > 안드로이드' 카테고리의 다른 글
(안드로이드 프로그래밍) Linear Layout 실습 3 (0) | 2017.09.26 |
---|---|
(안드로이드 프로그래밍) Linear Layout 실습 2 (0) | 2017.09.26 |
(안드로이드 프로그래밍) LinearLayout 만들기 (0) | 2017.09.25 |
(안드로이드 프로그래밍) 첫번째 어플리케이션 (0) | 2017.09.25 |
안드로이드 AVD와 Resources와 화면 설명 (0) | 2017.09.25 |