引言
新需求我的应用将有多个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); 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