Android高手进阶教程(十二)之----Android 在一个应用中如何启动另外一个已安装的应用!!!...

下面是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);  
            }             
        });  
    }  
}

转载于:https://www.cnblogs.com/vvning/p/9429756.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值