欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Intent启动别的应用实现方法

程序员文章站 2023-12-11 22:52:28
我们知道intent的应用,可以启动别一个activity,那么是否可以启动别外的一个应用程序呢,答案是可以的。 1、首先我们新建一个android应用,名为anothe...

我们知道intent的应用,可以启动别一个activity,那么是否可以启动别外的一个应用程序呢,答案是可以的。

1、首先我们新建一个android应用,名为anotherpro,此应用什么内容都没有,用于被另外一个程序打开。

Android Intent启动别的应用实现方法

2、新建一个工程用于打开上面的应用,程序界面如下

Android Intent启动别的应用实现方法

3、修改程序代码,在oncreate中添加如下代码

anotherpro = (button) findviewbyid(r.id.startanotherpro);calendar = (button) findviewbyid(r.id.startcalendar);anotherpro.setonclicklistener(new onclicklistener() {@overridepublic void onclick(view v) {intent intent = new intent();intent.setcomponent(new componentname("com.anotherpro", "com.anotherpro.mainactivity"));startactivity(intent);}});calendar.setonclicklistener(new onclicklistener() {@overridepublic void onclick(view v) {intent intent = new intent();intent.setcomponent(new componentname("com.android.calendar", "com.android.calendar.launchactivity"));startactivity(intent);}});
intent.setcomponent(new componentname(packagename, mainactivityname));// 第一个参数为应用程序包名,第二个参数为程序启动的activity

 运行程序,点击anotherpro将会打开第一个应用;

 点击calendar将会打开系统的日历应用。

Android Intent启动别的应用实现方法

上一篇:

下一篇: