C:\eclipse\workspace\HelloAndroid\res\layout
<?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="fill_parent"
          android:layout_height="wrap_content"          
          android:textColor="#FF00FF"
    android:gravity="center"
          android:text="Hello World, HelloAndroid"/>
    
<EditText id="@+id/entry" 
 android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:background="@android:drawable/editbox_background"
 />
      
</LinearLayout>


새로운 안드로이드ID 이름 의미가 뭐냐는 말인가요?
(한글파일에 캡쳐한 사진)

이게 무슨말인지 이해가 안되네요;

main.xml 14번째 줄같은데 어떻게 하라는건지좀 알려주세요;