我正在开发一个几乎开发的Android应用程序,我能够在我的手机中成功发布它并且工作正常,但是它在安装后没有在主屏幕上创建快捷方式,有人可以请帮我如何创建快捷方式安装。
答案 0 :(得分:0)
这是我找到的最佳答案(https://stackoverflow.com/a/23893035/2507782),因为我们正在检查是否已存在快捷方式,以及清单文件中的一些修改。
<activity android:name=".ShortCutActivity" android:label="@string/shortcut_label">
<intent-filter>
<action android:naenter code hereme="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
和
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />