赞
踩
废话不多说
就是在长按应用图片的时候弹出选项框,然后你可以自定义点击哪个框可以跳转到哪个页面,非常好的一个功能,也属于Android 7新特性
但是国内厂商貌似支持的不多,我的360N7Pro不支持,华为的手机支持
看图
撰写这个功能大概主只需要两步:
第一步:
res/xml/ 文件夹内 写这么一个东西,名字随便取
- <shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
- <shortcut
- android:icon="@drawable/add"
- android:shortcutId="add_website"
- android:shortcutLongLabel="@string/add_new_website"
- android:shortcutShortLabel="@string/add_new_website_short"
- >
- <intent
- android:action="com.example.android.appshortcuts.ADD_WEBSITE"
- android:targetClass="com.example.android.appshortcuts.Main"
- android:targetPackage="com.example.android.appshortcuts"
- />
- </shortcut>
- </shortcuts>
分析:
1 .shortcuts节点下添加一个shortcuts节点
2. icon 左边的图片
3. id唯一id
4. shortcutLongLable 中间的文字
5. shortcutShortLable 如果显示范围不足显示这个文字
6 .Intent,意图,就是你点击这个选项想干嘛,开发者决定,要添加你要跳转的action,用来在Activity里判断的
7. targetCalss:定义好你要跳转的哪个Activity页面
8. targetPackage:定义好你要跳转的Activity所在的包名
9 .(just so so)
第二步:
在你的目标Activity的onCreate方法内
gitHub: https://github.com/googlesamples/android-AppShortcuts/#readme
补充链接1: https://www.jianshu.com/p/6254e8c2c8d6
补充链接2: https://www.2cto.com/kf/201610/558090.html
ok.可以去睡觉了,困死了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。