答案 0 :(得分:3)
在res下,在xml目录下创建一个名为shortcuts.xml
的xml,并在其中添加以下代码:(创建静态快捷方式)
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutDisabledMessage="@string/static_shortcut_disabled_message"
android:shortcutId="static"
android:shortcutLongLabel="@string/static_shortcut_long_label"
android:shortcutShortLabel="@string/static_shortcut_short_label">
<intent
android:action="android.intent.action.VIEW"
android:targetClass="<Fully_Qualified_Activity_Name>"
android:targetPackage="Package_Name_Of_Activity" />
</shortcut>
</shortcuts>
在Manifest.xml
内添加您的活动的元数据标记:
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
通过长按app图标进行测试。