AddActivityText(main, <meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
)
CreateResource(xml, shortcuts.xml,
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="compose"
android:enabled="true"
android:icon="@drawable/icon"
android:shortcutShortLabel="@string/compose_shortcut_short_label1"
android:shortcutLongLabel="@string/compose_shortcut_long_label1"
android:shortcutDisabledMessage="@string/compose_disabled_message1">
<intent
android:action="b4a.shortcut.item1"
android:targetPackage="b4a.example3"
android:targetClass="b4a.example3.main" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
<!-- Specify more shortcuts here. -->
</shortcuts>
)
CreateResource(values, strings.xml,
<resources>
<string name="compose_shortcut_short_label1">short label</string>
<string name="compose_shortcut_long_label1">long label</string>
<string name="compose_disabled_message1">disabled</string>
</resources>
)