Make AndroidManifest.xml's activity match what's in Java files

Change-Id: I9489d32a715a1aa7f8449495b7c1101a1ad1eac6
This commit is contained in:
Shih-wei Liao
2011-03-01 18:21:44 -08:00
parent 7aa1c11e67
commit 7cd58489c9
4 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@
<application
android:label="RsBalls"
android:icon="@drawable/test_pattern">
<activity android:name="RsBalls"
<activity android:name="Balls"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@@ -5,7 +5,7 @@
<application
android:label="RsFountain"
android:icon="@drawable/test_pattern">
<activity android:name="RsFountain">
<activity android:name="Fountain">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />

View File

@@ -20,7 +20,7 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-sdk android:minSdkVersion="11" />
<application android:label="RsHelloCompute">
<activity android:name="RsHelloCompute">
<activity android:name="HelloCompute">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />

View File

@@ -19,7 +19,7 @@
<uses-sdk android:minSdkVersion="11" />
<application android:label="RsHelloWorld"
android:icon="@drawable/test_pattern">
<activity android:name="RsHelloWorld"
<activity android:name="HelloWorld"
android:label="RsHelloWorld"
android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>