服务器之家

服务器之家 > 正文

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

时间:2021-01-09 17:06     来源/作者:Android开发网

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

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

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

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

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

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

?
1
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);}});
?
1
intent.setcomponent(new componentname(packagename, mainactivityname));// 第一个参数为应用程序包名,第二个参数为程序启动的activity

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

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

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

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部