在Android 7.1(API 25)之后添加的新功能,应用快捷方式。ShortcutManager管理一个应用程序的快捷方式。只要在长按应用图标的情况下,在应用图标上显示的快捷方式,用户可以快速访问任意一个Activity。
现在市场上已经是有很多应用增加了这项功能,例如微博、美团、支付宝、知乎、印象笔记等。
按照惯例,我们先看看效果图:
一、快捷方式的特点
(1)静态方式
(2)动态方式
二、这个Dome主要是通过动态的方式,下面我们来看看动态创建的方式,是通过ShortcutManager实现快捷方式的增加、删除、更新的操作,使用起来很简单。
package per.juan.shortcutdome;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.content.pm.ShortcutInfo;
import android.content.pm.ShortcutManager;
import android.graphics.drawable.Icon;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
try {
setupShortcuts();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 桌面快捷启动1、发微博;2、热门微博;3、扫一扫
*/
private void setupShortcuts() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
ShortcutManager mShortcutManager = getSystemService(ShortcutManager.class);
List<ShortcutInfo> infos = new ArrayList<>();
Intent intent;
ShortcutInfo info;
Intent mainIntent = new Intent(Intent.ACTION_MAIN, Uri.EMPTY, this, MainActivity.class).setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
// 发微博
intent = new Intent(this, PublishWeiboActivity.class);
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra("isPublishWeibo", true);
intent.putExtra("from_shortcuts", true);
info = new ShortcutInfo.Builder(this, getResources().getString(R.string.shortcuts_publish_weibo_long_disable_msg)).setShortLabel(getResources().getString(R.string.shortcuts_publish_weibo_short_name)).setLongLabel(getResources().getString(R.string.shortcuts_publish_weibo_long_name)).setIcon(Icon.createWithResource(this, R.drawable.ico_shortcut_publish)).setIntents(new Intent[]{mainIntent, intent})//当按下back时,将转到MainActivity
.setRank(0).build();
infos.add(info);
// 热门微博
intent = new Intent(this, PopularWeiboActivity.class);
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra("isPublishWeibo", false);
intent.putExtra("from_shortcuts", true);
info = new ShortcutInfo.Builder(this, getResources().getString(R.string.shortcuts_popular_weibo_disable_msg)).setShortLabel(getResources().getString(R.string.shortcuts_popular_weibo_short_name)).setLongLabel(getResources().getString(R.string.shortcuts_popular_weibo_long_name)).setIcon(Icon.createWithResource(this, R.drawable.ico_shortcut_popular)).setIntents(new Intent[]{mainIntent, intent})//当按下back时,将转到MainActivity
.setRank(1).build();
infos.add(info);
// 扫一扫
intent = new Intent(this, QRCodeActivity.class);
intent.setAction(Intent.ACTION_VIEW);
info = new ShortcutInfo.Builder(this, getResources().getString(R.string.shortcuts_qrcord_disable_msg)).setShortLabel(getResources().getString(R.string.shortcuts_qrcord_short_name)).setLongLabel(getResources().getString(R.string.shortcuts_qrcord_long_name)).setIcon(Icon.createWithResource(this, R.drawable.ico_shortcut_scan)).setIntent(intent).setIntents(new Intent[]{mainIntent, intent})//当按下back时,将转到MainActivity
.setRank(2).build();
infos.add(info);
//这样就可以通过长按图标显示出快捷方式了
mShortcutManager.setDynamicShortcuts(infos);
}
}
}
strings.xml
<resources>
<string name="app_name">ShortcutDome</string>
<string name="shortcuts_publish_weibo_short_name">发微博</string>
<string name="shortcuts_publish_weibo_long_name">发微博</string>
<string name="shortcuts_publish_weibo_long_disable_msg">发微博不可用</string>
<string name="shortcuts_popular_weibo_short_name">热门微博</string>
<string name="shortcuts_popular_weibo_long_name">热门微博</string>
<string name="shortcuts_popular_weibo_disable_msg">热门微博不可用</string>
<string name="shortcuts_qrcord_short_name">扫一扫</string>
<string name="shortcuts_qrcord_long_name">扫一扫</string>
<string name="shortcuts_qrcord_disable_msg">扫一扫不可用</string>
</resources>
在进来的页面中,我们通过传值去做一些业务逻辑判断
boolean from_shortcuts = getIntent().getBooleanExtra("from_shortcuts", false);
if (from_shortcuts) {
boolean isPublishWeibo = getIntent().getBooleanExtra("isPublishWeibo", false);
}
好了,本篇文章就这样啦,存在总结不到位的地方还望指导,感谢~
最后附上官网地址:
https://developer.android.google.cn/reference/android/content/pm/ShortcutManager.html