简介
有时候会存在特殊需求:当前的app不同的界面都需要设置为入口进行展示。但是Android系统默认只运行一个app存在一个应用启动图标。其实实现起来一点都不困难。
技术实现
方式一:通过设置属性进行实现多图标
根据官方api介绍,创建app的启动图标实在manifest文件中进行配置的。默认配置:
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
...
其中在application中配置的icon即应用程序的启动图标icon,label字段就是应用程序情动图标的文字描述,而下面的activity中的intent filter节点就是设置启动图标的详情。目前的代码展示了当前MainActivity是启动界面,和普通界面的区别在于设置了category属性为LAUNCHER。
如果需要实现多个启动图标只需要在目标activity或者任一带有ui界面的组件设置intent-filter节点的catgegory属性值为LAUNCHER即可。测试代码:
android:allowBackup="true"
android:icon=