今天学的不太一样今天学在应用程式加上快捷方式

写一个Shortcut.xml写三个快捷开启

<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">

<shortcut
android:shortcutId="first"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutLongLabel="@string/b"
android:shortcutShortLabel="@string/a">

<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.activitychange"
android:targetClass="com.example.activitychange.ActStartActivity"/>
<categories android:name="android.shortcut.conversation"/>
</shortcut>

<shortcut
android:shortcutId="second"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutLongLabel="@string/d"
android:shortcutShortLabel="@string/c">

<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.activitychange"
android:targetClass="com.example.activitychange.JumpFirstActivity"/>
<categories android:name="android.shortcut.conversation"/>
</shortcut>

<shortcut
android:shortcutId="third"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutLongLabel="@string/f"
android:shortcutShortLabel="@string/e">

<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.activitychange"
android:targetClass="com.example.activitychange.LoginInputActivity"/>
<categories android:name="android.shortcut.conversation"/>
</shortcut>

</shortcuts>

将一个程式定为主要程式在写一个meta-data

<activity
android:name=".ActStartActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcut"/>
</activity>

这样就可以做成这种效果