Создание ярлыка для класса (не MainActivity) на главном экране Android

Я искал ВЕСЬ ДЕНЬ безрезультатно... Я знаю, что есть несколько вопросов по этому вопросу, но я не смог найти тот, который мне подходит.

По сути, у меня есть действие (MainActivity) с функцией добавления ярлыка на домашний экран. Когда я нажимаю на ярлык, я хочу, чтобы он открыл другое действие (NewActivity). Задержка здесь, кажется, в том, что она не работает правильно, когда я пытаюсь запустить действие, отличное от того, из которого был сделан ярлык.

Ярлык успешно сделан, но когда я нажимаю на него, я получаю тост-сообщение "Приложение не установлено" из системы Android.

Вот код для добавления ярлыка:

                Intent shortcutIntent = new Intent();
                shortcutIntent.setClassName("com.enceladus.myApp", "com.enceladus.myApp.NewActivity");
                shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                Intent addIntent = new Intent();
                addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
                addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Calculator");
                addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(MainActivity.this, R.drawable.calc));
                addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
                MainActivity.this.sendBroadcast(addIntent);

РЕДАКТИРОВАТЬ: Вот мой манифест:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.enceladus.myApp"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="9"
    android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.enceladus.myApp.NewActivity"
        android:label=""
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.Translucent.NoTitleBar"
        android:launchMode="singleInstance"
        />
</application>

NewActivity.class прекрасно работает (я знаю, потому что я много отлаживал), так что это не проблема.

2 ответа

Решение

Попробуйте сделать так, чтобы ваш манифест выглядел так для записи NewActivity:

    <activity android:name="com.enceladus.myApp.NewActivity"
    android:label=""
    android:screenOrientation="portrait"
    android:theme="@android:style/Theme.Translucent.NoTitleBar"
    android:launchMode="singleInstance"
    > 
       <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

        </intent-filter>


    </activity>

также, возможно, попробуйте создать ярлык, как это:

Intent shortcutIntent = new Intent(MainActivity.this, NewActivity.class);
shortcutIntent.setAction(Intent.ACTION_MAIN); //Not sure if you'll need this or not.
//remove the next line.
//shortcutIntent.setClassName("com.enceladus.myApp", "com.enceladus.myApp.NewActivity");

Другой способ сделать это - установить флаг android:exported в значение true.

Другие вопросы по тегам