Android一个应用多个图标的几种实现方式

  • 引言

    新需求我的应用将有多个ICON入口..最终选择了 activity-alias , 其实实现多图标有好几种方式

1. 多Activity + intent-filter方式

因为launcher会扫描app中含有以下intent-filter属性的标签, 有的话就会将其添加到桌面.

所以只要在你想添加到桌面的activity下加上以下标签即可.

1
2
3
4
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

2. activity-alias方式

上面第一种方式对于一个activity的要求是没法做的, 只能通过多写几个入口Activity+ 跳转参数的方式来解决, 而 activity-alias方式就可以很好解决该问题.

activity-alias中, android:name 就是你定义这个activity为什么名字, 你通过点击这个图标进入的话, 在代码中

getIntent().getComponent().getClassName()

可以获取到该名字, targetActivity 就是你点击该图标后的目标activity. 上面代码是写在目标activity里面的,获取到的名字依然是我们定义的名字哦. 这样就可以通过这个判断是通过哪个入口进来的了.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<activity-alias
android:name="@string/altman"
android:exported="true"
android:icon="@drawable/speech_01"
android:label="@string/altman_app_name"
android:screenOrientation="landscape"
android:targetActivity="com.avatar.dialog.DialogActivity"
android:theme="@style/DialogActivityTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>

3. 网页标签-添加快捷方式

这只是针对特殊情形, 比如UC浏览器创建一个网页标签在桌面上,是向桌面应用(launcher)发送相关action的广播,相关的action如下:

1
public static final String ACTION_ADD_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";

需要的权限:

1
2
3
4
5
6
<!-- 添加快捷方式 -->
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<!-- 移除快捷方式 -->
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
<!-- 查询快捷方式 -->
<uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />

添加图标

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
private void addShortcut(String name) {
Intent addShortcutIntent = new Intent(ACTION_ADD_SHORTCUT);
// 不允许重复创建
addShortcutIntent.putExtra("duplicate", false);// 经测试不是根据快捷方式的名字判断重复的
// 应该是根据快链的Intent来判断是否重复的,即Intent.EXTRA_SHORTCUT_INTENT字段的value
// 但是名称不同时,虽然有的手机系统会显示Toast提示重复,仍然会建立快链
// 屏幕上没有空间时会提示
// 注意:重复创建的行为MIUI和三星手机上不太一样,小米上似乎不能重复创建快捷方式
// 名字
addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);
// 图标
addShortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
Intent.ShortcutIconResource.fromContext(MainActivity.this,
R.drawable.ic_launcher));
// 设置关联程序
Intent launcherIntent = new Intent(Intent.ACTION_MAIN);
launcherIntent.setClass(MainActivity.this, MainActivity.class);
launcherIntent.addCategory(Intent.CATEGORY_LAUNCHER);
addShortcutIntent
.putExtra(Intent.EXTRA_SHORTCUT_INTENT, launcherIntent);
// 发送广播
sendBroadcast(addShortcutIntent);
}

本文作者:Anderson/Jerey_Jobs

博客地址 : http://jerey.cn/

简书地址 : Anderson大码渣

github地址 : https://github.com/Jerey-Jobs