사진처럼... 나오ㅏ ㅠㅠ
C언어 같이 \n 해봤는데 줄이 안바뀌더라구...
어떻게 해야되는거야??
혼자 하나하나 할라니까 막히면 시간걸리고 막히면 시간걸리고 죽겠네 ㅠ
어제 하루죙일 프로그램 설치하고 헬로월드 한번 띄운다고 시간 다 잡아먹었는데 ㅠㅠ
<strings.xml>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">제목입력인가? 뭐지 여긴</string>
<string name="action_settings">Settings</string>
<string name="hello_world">테스트 하자 테스트 하자.</string>
<string name="write1">기초를 다지자!111111</string>
<string name="write2">으헤헤으헤헤222222222222222</string>
<string name="write3">이얍이얍이욥33333333333333333333333333</string>
</resources>
<activity_main.xml>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/write1"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/write2"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/write3"
/>
</RelativeLayout>
텍스트뷰 배치수정해
텍스트뷰 위치지정 안하면 전부 좌상단에 몰아서 배치되서 세 개가 겹친거임. 레이아웃 자체를 릴레이티브가 아니라 리니어레이아웃으로 바꾸든지 텍스트뷰 위치를 제대로 잡아쥬ㅓ야지
형님들 감사합니다!