Fix "android create project" to properly set name in strings.xml

Layout was wrong too.

SDK BUG 2176634

Change-Id: Ibbec1c47037d4a6dd875953c1875daaac4f11106
This commit is contained in:
Raphael
2009-10-08 15:16:22 -07:00
parent 8eff7f5779
commit 3334a5874e
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World, ACTIVITY_NAME"
android:text="Hello World, ACTIVITY_ENTRY_NAME"
/>
</LinearLayout>

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">ACTIVITY_NAME</string>
<string name="app_name">ACTIVITY_ENTRY_NAME</string>
</resources>