Android应用桌面长按快捷方式

从元数据节点读取(快捷方式)

比如桌面支付宝应用长按的快捷菜单

元数据的meta-data标签除了前面说到的name属性和value属性,还拥有resource属性,该属性可指定一个XML文件,表示元数据想要的复杂信息保存于XML数据之中。

利用元数据配置快捷菜单的步骤如下所示:

  1. 在res/values/strings.xml添加各个菜单项名称的字符串
  2. 配置创建res/xml/shortcuts.xml,在该文件中填入各组菜单项的快捷方式定义(每个菜单对应哪个活动页面)。
  3. 给activity节点注册元数据的快捷菜单配置。

manifest.xml

<activity
    android:name=".activity.Request"
    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/shortcuts" />
activity>

res/xml/shortcuts.xml


<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
    <shortcut
        android:enabled="true"
        android:icon="@mipmap/ic_launcher"
        android:shortcutId="first"
        android:shortcutShortLabel="@string/first_short"
        android:shortcutLongLabel="@string/first_long">
        
        <intent
            android:action="android.intent.action.VIEW"
            android:targetClass="com.example.lesson.activity.FirstActivity"
            android:targetPackage="com.example.lesson" />
    shortcut>
shortcuts>

你可能感兴趣的:(android,java,前端)