/ Published in: Java
Create a Home activity.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<activity android:name="Home" android:theme="@style/Theme" android:launchMode="singleInstance" android:stateNotNeeded="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.HOME"/> <category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
URL: http://developer.android.com/resources/samples/Home/AndroidManifest.html