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>
    <!--这个name是固定的-->
    <meta-data
         android:name="android.app.shortcuts"
         android:resource="@xml/shortcuts" />
</activity>

res/xml/shortcuts.xml

<?xml version ="1.0" encoding="utf-8"?>
<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">
        <!--上边两个label必须放到string.xml中-->
        <intent
            android:action="android.intent.action.VIEW"
            android:targetClass="com.example.lesson.activity.FirstActivity"
            android:targetPackage="com.example.lesson" />
    </shortcut>
</shortcuts>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值