summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/shortcuts.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/xml/shortcuts.xml')
-rw-r--r--app/src/main/res/xml/shortcuts.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/app/src/main/res/xml/shortcuts.xml b/app/src/main/res/xml/shortcuts.xml
new file mode 100644
index 000000000..03042f224
--- /dev/null
+++ b/app/src/main/res/xml/shortcuts.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
+ <shortcut
+ android:enabled="true"
+ android:icon="@drawable/ic_playlist_shortcut"
+ android:shortcutId="queue"
+ android:shortcutShortLabel="@string/queue_label">
+ <intent
+ android:action="android.intent.action.VIEW"
+ android:targetClass="de.danoeh.antennapod.activity.MainActivity"
+ android:targetPackage="${applicationId}">
+ <extra
+ android:name="fragment_tag"
+ android:value="QueueFragment" />
+ </intent>
+ </shortcut>
+
+ <shortcut
+ android:enabled="true"
+ android:icon="@drawable/ic_feed_shortcut"
+ android:shortcutId="episodes"
+ android:shortcutShortLabel="@string/episodes_label">
+ <intent
+ android:action="android.intent.action.VIEW"
+ android:targetClass="de.danoeh.antennapod.activity.MainActivity"
+ android:targetPackage="${applicationId}">
+ <extra
+ android:name="fragment_tag"
+ android:value="EpisodesFragment" />
+ </intent>
+ </shortcut>
+
+ <shortcut
+ android:enabled="true"
+ android:icon="@drawable/ic_folder_shortcut"
+ android:shortcutId="subscriptions"
+ android:shortcutShortLabel="@string/subscriptions_label">
+ <intent
+ android:action="android.intent.action.VIEW"
+ android:targetClass="de.danoeh.antennapod.activity.MainActivity"
+ android:targetPackage="${applicationId}">
+ <extra
+ android:name="fragment_tag"
+ android:value="SubscriptionFragment" />
+ </intent>
+ </shortcut>
+
+ <shortcut
+ android:enabled="true"
+ android:icon="@drawable/ic_refresh_shortcut"
+ android:shortcutId="refresh"
+ android:shortcutShortLabel="@string/refresh_label">
+ <intent
+ android:action="android.intent.action.VIEW"
+ android:targetClass="de.danoeh.antennapod.activity.MainActivity"
+ android:targetPackage="${applicationId}">
+ <extra
+ android:name="refresh_on_start"
+ android:value="true" />
+ </intent>
+ </shortcut>
+</shortcuts>