今天晚上Jimmy问了我一个问题,就是如何在一个应用中 通过某个事件,而去启动另外一个已安装的应用。所以愿意和大家分享一下!
而为了能让大家更加容易的理解,我写了一个简单的Demo,我们的程序有俩个按钮,其中一个点击会启动我自己写的应用(一个3D应用为例),而另外一个按钮会启动系统自带的应用(如,日历,闹钟,计算器等等).这里我一日历为例子!
首先看一下我们的效果图(点击第一个按钮为例):
![](https://box.kancloud.cn/2016-08-10_57aae597ec101.gif)
![](https://box.kancloud.cn/2016-08-10_57aae5980f3c9.gif)
下面是Demo的详细步骤:
一、新建一个Android工程命名为StartAnotherApplicationDemo.
二、修改main.xml布局,代码如下:
~~~
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" ><TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Welcome to Mr Wei's Blog." /><Button android:id="@+id/button" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Start Another Application"/><Button android:id="@+id/start_calender" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Start Calendar"/></LinearLayout>
~~~
三、修改主程序StartAnotherApplicationDemo.java代码如下:
~~~
package com.android.tutor;import android.app.Activity;import android.content.ComponentName;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.widget.Button;public class StartAnotherApplicationDemo extends Activity { private Button mButton01,mButton02; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mButton01 = (Button)findViewById(R.id.button); mButton02 = (Button)findViewById(R.id.start_calender); //-----启动我们自身写的程序------------------ mButton01.setOnClickListener(new Button.OnClickListener(){ public void onClick(View v) { //-----核心部分----- 前名一个参数是应用程序的包名,后一个是这个应用程序的主Activity名 Intent intent=new Intent(); intent.setComponent(new ComponentName("com.droidnova.android.games.vortex", "com.droidnova.android.games.vortex..Vortex")); startActivity(intent); } }); //-----启动系统自带的应用程序------------------ mButton02.setOnClickListener(new Button.OnClickListener(){ public void onClick(View v) { Intent intent=new Intent(); intent.setComponent(new ComponentName("com.android.calendar", "com.android.calendar.LaunchActivity")); startActivity(intent); } }); }}
~~~
四、执行之,将得到如上效果!
好了今天就到这里了,夜深了,收工睡觉!有什么不明白的,希望大家多留言,我会耐心解答!谢谢~
- 前言
- (一)Android常用名令集锦(图文并茂)!
- (二)Android Launcher抽屉类SlidingDrawer的使用!
- (三)Android 中自定义View的应用.
- (四)Android 中自定义属性(attr.xml,TypedArray)的使用!
- (五)Android 中LayoutInflater的使用!
- (六)Android 中MenuInflater的使用(布局定义菜单)!
- (七)Android 中Preferences的使用!
- (八)Android Widget开发案例(世界杯倒计时!)
- (九)Android Handler的使用!!!
- (十)Android PopupWindow的使用!!!
- (十一)Android 通用获取Ip的方法(判断手机是否联网的方法)!!!
- (十二)Android 在一个应用中如何启动另外一个已安装的应用!!!
- (十三)Android 数据库SQLiteDatabase的使用!!
- (十四)Android Location的使用!!
- (十五)通过Location获取Address的使用!
- (十六)Android中万能的BaseAdapter(Spinner,ListView,GridView)的使用!
- Android 中的拿来主义(编译,反编译,AXMLPrinter2,smali,baksmali)!
- (十七)Android中Intent传递对象的两种方法(Serializable,Parcelable)!
- (十八)列出Android设备中所有启动的服务,及判断某个服务是否开启!
- (十九)Android开发中,使用线程应该注意的问题!
- (二十)Android与JavaScript方法相互调用!
- (二十一)Android中创建与几种解析xml的方法!
- (二十二)Android中几种图像特效处理的集锦!!
- (二十三)Android中的日历读写操作!!!
- (二十四)Android WebView的缓存!!!
- (二十五)Android 中的AIDL!!!