Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android高手進階教程(十二)之----Android 在一個應用中如何啟動另外一個已安裝的應用

Android高手進階教程(十二)之----Android 在一個應用中如何啟動另外一個已安裝的應用

編輯:Android開發實例

今天晚上Jimmy問了我一個問題,就是如何在一個應用中 通過某個事件,而去啟動另外一個已安裝的應用。所以願意和大家分享一下!

而為了能讓大家更加容易的理解,我寫了一個簡單的Demo,我們的程序有倆個按鈕,其中一個點擊會啟動我自己寫的應用(一個3D應用為例),而另外一個按鈕會啟動系統自帶的應用(如,日歷,鬧鐘,計算器等等).這裡我一日歷為例子!

首先看一下我們的效果圖(點擊第一個按鈕為例):

 

下面是Demo的詳細步驟:

一、新建一個Android工程命名為StartAnotherApplicationDemo.

二、修改main.xml布局,代碼如下:

 

  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     android:orientation="vertical" 
  4.     android:layout_width="fill_parent" 
  5.     android:layout_height="fill_parent" 
  6.     > 
  7. <TextView    
  8.     android:layout_width="fill_parent"   
  9.     android:layout_height="wrap_content"   
  10.     android:text="Welcome to Mr Wei's Blog." 
  11.     /> 
  12. <Button 
  13.     android:id="@+id/button" 
  14.     android:layout_width="fill_parent"   
  15.     android:layout_height="wrap_content"   
  16.     android:text="Start Another Application" 
  17. /> 
  18. <Button 
  19.     android:id="@+id/start_calender" 
  20.     android:layout_width="fill_parent"   
  21.     android:layout_height="wrap_content"   
  22.     android:text="Start Calendar" 
  23. /> 
  24. </LinearLayout> 

三、修改主程序StartAnotherApplicationDemo.java代碼如下:

 

  1. package com.android.tutor;  
  2. import android.app.Activity;  
  3. import android.content.ComponentName;  
  4. import android.content.Intent;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.widget.Button;  
  8. public class StartAnotherApplicationDemo extends Activity {  
  9.      
  10.     private Button mButton01,mButton02;  
  11.       
  12.     public void onCreate(Bundle savedInstanceState) {  
  13.         super.onCreate(savedInstanceState);  
  14.         setContentView(R.layout.main);  
  15.           
  16.         mButton01 = (Button)findViewById(R.id.button);  
  17.         mButton02 = (Button)findViewById(R.id.start_calender);  
  18.           
  19.         //-----啟動我們自身寫的程序------------------  
  20.         mButton01.setOnClickListener(new Button.OnClickListener(){  
  21.             public void onClick(View v) {  
  22.                 //-----核心部分----- 前名一個參數是應用程序的包名,後一個是這個應用程序的主Activity名  
  23.                 Intent intent=new Intent();  
  24.                 intent.setComponent(new ComponentName("com.droidnova.android.games.vortex",   
  25.                                                      "com.droidnova.android.games.vortex..Vortex"));  
  26.                 startActivity(intent);  
  27.             }             
  28.         });  
  29.       //-----啟動系統自帶的應用程序------------------  
  30.         mButton02.setOnClickListener(new Button.OnClickListener(){  
  31.             public void onClick(View v) {  
  32.                 Intent intent=new Intent();  
  33.                 intent.setComponent(new ComponentName("com.android.calendar", "com.android.calendar.LaunchActivity"));  
  34.                 startActivity(intent);  
  35.             }             
  36.         });  
  37.     }  

四、執行之,將得到如上效果!

好了今天就到這裡了,夜深了,收工睡覺!有什麼不明白的,希望大家多留言,我會耐心解答!謝謝~

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved