과제를 내주신 우여飛님의 게시글 주소는
http://blog.naver.com/urchoco/100148858723
이번에 풀게된 제일 처음 안드로이드 문제는 이거이었습니다.
처음에 , LinerLayout을 사용하지않고 RealativeLayout? 을 사용해서 글씨가 막막 겹쳐서 엄청나게
시작부터 멍멍하게 만든 문제이었는데요. LinerLayout을 사용하고 Wrap에선 Content 를 사용한뒤,
해보니 정상적으로 작동 하였습니다!
소스 풀이
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="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd2"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd3"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd4"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd5"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd6"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/youpd7"
/>
</LinearLayout>
String.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">유 피디의 놀라운 프로젝트</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<!-- 문제풀기! -->
<string name="youpd">안녕하세요. 유 피디입니다.</string>
<string name="youpd2">이번에 배우고 있는 안드로이드 어플!</string>
<string name="youpd3">정말 재미있는거 같아요!</string>
<string name="youpd4"> </string>
<string name="youpd5">이렇게 연습하는것도 비베를 배웠을때랑 같네요.</string>
<string name="youpd6">주어진 과제를 풀기도 하고!</string>
<string name="youpd7">재미있습니다 짞짞짞!</string>
</resources>
---------------------------------------------------------------------------------------
결과창
-ㅇ-! 짱재미있다.
'Android' 카테고리의 다른 글
안드로이드(Android) 프로젝트 네임설정 (0) | 2013.09.02 |
---|---|
안드로이드 에뮬레이터 명령어 (0) | 2013.09.02 |
우여飛의 안드로이드 어플 개발 강좌 #7 - 문제풀이 (2) | 2012.12.01 |
[i티거님강좌] 006: TextView, Button, ImageView, EditText (0) | 2012.11.29 |
유 피디의 안드로이드 개발일지 (0) | 2012.11.29 |