我已经根据 android 开发者网站实现了应用程序快捷方式,但它没有产生任何结果。应用程序快捷方式未显示。
这是
快捷方式.xml
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="sleeptimer"
android:enabled="true"
android:icon="@drawable/ic_timer_black_24dp"
android:shortcutShortLabel="@string/sleep_timer_short"
android:shortcutLongLabel="@string/sleep_timer_long"
android:shortcutDisabledMessage="@string/sleep_timer_long">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.vikaskonaparthi.cronus"
android:targetClass="com.vikaskonaparthi.cronus.activities.SleepTimerActivity" />
<!-- 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="android.shortcut.timer" />
</shortcut>
<!-- Specify more shortcuts here. -->
</shortcuts>
这是我在 Mainfest.xml 中所做的
<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
谁能帮我这个?
提前致谢.....................