첨부화일에서요..

com.test.sample.Sample 이라는 기본? 타이틀 없애고 싶은데.. ;;
안 없어집니다.ㅜ
왠지 어떤거 빠뜨린거 같은데.. 모르겠습니다.
고수님들의 답변 기둘립니다.


메니페스트 정의는
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.test.sample"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon">
        <activity android:name=".Sample">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
    <uses-sdk android:minSdkVersion="7" />

</manifest>

액티버티 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"
    />
</LinearLayout>