"Activity main.xml (레이아웃)"의 두 판 사이의 차이

잔글 (Activiy main.xml 문서를 Activity main.xml(으)로 옮김)
(차이 없음)

2012년 12월 11일 (화) 15:58 판

activiy_main.xml

1 소스 코드

  • 프로젝트 > res > layout 폴더에 있는 파일
<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"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

</RelativeLayout>
→ 텍스트편집기에는 "@string/hello_world"라고 되어 있는데, 그래픽 모드에는 "Hello world!"라고 보인다...
strings.xml 파일을 보면 "hello_world"라는 이름으로 "Hello world!"라는 값이 등록되어 있다.

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}