사진처럼... 나오ㅏ ㅠㅠ

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>