3 changed files with 96 additions and 4 deletions
@ -0,0 +1,66 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<shortcuts xmlns:tools="http://schemas.android.com/tools" |
||||
|
xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
|
<shortcut |
||||
|
android:shortcutId="video" |
||||
|
android:enabled="true" |
||||
|
android:icon="@drawable/ic_menu_video" |
||||
|
android:shortcutShortLabel="@string/video" |
||||
|
android:shortcutLongLabel="@string/video" |
||||
|
tools:targetApi="n_mr1"> |
||||
|
<intent |
||||
|
android:action="vlc.shortcut.video" |
||||
|
android:targetPackage="org.videolan.vlc.debug" |
||||
|
android:targetClass="org.videolan.vlc.gui.MainActivity" /> |
||||
|
<!-- If your shortcut is associated with multiple intents, include them |
||||
|
here. The last intent in the list determines what the user sees when |
||||
|
they launch this shortcut. --> |
||||
|
<categories android:name="vlc.shortcut.category" /> |
||||
|
</shortcut> |
||||
|
<shortcut |
||||
|
android:shortcutId="audio" |
||||
|
android:enabled="true" |
||||
|
android:icon="@drawable/ic_menu_audio" |
||||
|
android:shortcutShortLabel="@string/audio" |
||||
|
android:shortcutLongLabel="@string/audio" > |
||||
|
<intent |
||||
|
android:action="vlc.shortcut.audio" |
||||
|
android:targetPackage="org.videolan.vlc.debug" |
||||
|
android:targetClass="org.videolan.vlc.gui.MainActivity" /> |
||||
|
<!-- If your shortcut is associated with multiple intents, include them |
||||
|
here. The last intent in the list determines what the user sees when |
||||
|
they launch this shortcut. --> |
||||
|
<categories android:name="vlc.shortcut.category" /> |
||||
|
</shortcut> |
||||
|
<shortcut |
||||
|
android:shortcutId="browser" |
||||
|
android:enabled="true" |
||||
|
android:icon="@drawable/ic_menu_folder" |
||||
|
android:shortcutShortLabel="@string/directories" |
||||
|
android:shortcutLongLabel="@string/directories" > |
||||
|
<intent |
||||
|
android:action="vlc.shortcut.browser" |
||||
|
android:targetPackage="org.videolan.vlc.debug" |
||||
|
android:targetClass="org.videolan.vlc.gui.MainActivity" /> |
||||
|
<!-- If your shortcut is associated with multiple intents, include them |
||||
|
here. The last intent in the list determines what the user sees when |
||||
|
they launch this shortcut. --> |
||||
|
<categories android:name="vlc.shortcut.category" /> |
||||
|
</shortcut> |
||||
|
<shortcut |
||||
|
android:shortcutId="network" |
||||
|
android:enabled="true" |
||||
|
android:icon="@drawable/ic_menu_network" |
||||
|
android:shortcutShortLabel="@string/network_browsing" |
||||
|
android:shortcutLongLabel="@string/network_browsing" > |
||||
|
<intent |
||||
|
android:action="vlc.shortcut.network" |
||||
|
android:targetPackage="org.videolan.vlc.debug" |
||||
|
android:targetClass="org.videolan.vlc.gui.MainActivity" /> |
||||
|
<!-- If your shortcut is associated with multiple intents, include them |
||||
|
here. The last intent in the list determines what the user sees when |
||||
|
they launch this shortcut. --> |
||||
|
<categories android:name="vlc.shortcut.category" /> |
||||
|
</shortcut> |
||||
|
<!-- Specify more shortcuts here. --> |
||||
|
</shortcuts> |
||||
Loading…
Reference in new issue