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 my project.
ShortCutActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ShortcutIconResource icon =
Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_launcher);
Intent intent = new Intent();
Intent launchIntent = new Intent(this,MainActivity.class);
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, launchIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "ShortCut");
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
setResult(RESULT_OK, intent);
}
But it is not creating any shortcut. Am I missing something ?
Use this sample code in your activity which is set as a LAUNCHER and MAIN in AndroidManifest.xml
Also apply following permissions in your AndroidManifest.xml
Hope this will work for you