Unable to create application's shortcut on Home Screen upon installation in android
问题 I want to create a shortcut of the application on home screen when it is installed. I added this to AndroidManifest.xml <activity android:name="com.example.test.ShortCutActivity" android:icon="@drawable/ic_launcher" android:label="@string/title_activity_short_cut" > <intent-filter> <action android:name="android.intent.action.CREATE_SHORTCUT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> Also I have a Actvity created with ShortCutActivity name in