Android Intent如何启动别的应用
来源:爱站网时间:2020-10-31编辑:网友分享
我们知道Intent的应用,可以启动别一个Activity,那么是否可以启动别外的一个应用程序呢,答案是可以的
我们在Android中Intent的应用可以启动一个Activity,但是也有很多用户们不知道是可以这样操作的,那么接下来我们就一起去看看Android Intent如何启动别的应用的内容。
我们知道Intent的应用,可以启动别一个Activity,那么是否可以启动别外的一个应用程序呢,答案是可以的。
1、首先我们新建一个Android应用,名为AnotherPro,此应用什么内容都没有,用于被另外一个程序打开。
2、新建一个工程用于打开上面的应用,程序界面如下
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如何启动别的应用,本文中用实例分析了Intent调用系统应用程序的相关技巧,需要的朋友可以参考下。
下一篇:怎么操作SD卡中文件夹和文件