安装一个应用程序,在启动器中显示两个条目
在Android中,如何实现下面的效果呢?
仅安装一个应用程序,但在启动器中,有两个条目,输入每个条目将转到不同的用户界面。
就像google地图一样,你只能看到一个应用程序,但是有地图和导航条目。
谢谢。
In Android, how to implement the following effect?
Install just one application, but in the launcher, there are two entries, and entering each will go to different ui.
Just like google map, you can see only one application, but there are map and navigation entries.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为
AndroidManifest.xml
中的两个活动添加类别为android.intent.category.LAUNCHER
示例:
You need to add category as
android.intent.category.LAUNCHER
for both of the activities inAndroidManifest.xml
Example: