제가 프로그램 계발을 이제막 배운 학생이거든요?
근데

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="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
    <EditText id="@+id/entry"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@android:drawable/editbox_background"
    />
</LinearLayout>

이렇게 이부분을 추가 했는데요 갑자기 쌩뚱맞게
error: Invalid start tag LinearLayout 라면서 <LinearLayout xmlns:android 라인에 오류가 뜹니다 어떻게해야되나요