android 從APP啓動另外一個APP

寫下以下代碼便可android

import android.content.ComponentName; //引入app

 

Intent mIntent = new Intent("android.intent.action.MAIN");
ComponentName comp = new ComponentName("你要啓動app的包命,如:com.android.app", "你要啓動app的首頁,如:com.android.app.MainAcrivity");
mIntent.setComponent(comp);
mIntent.addCategory("android.intent.category.LAUNCHER"); 
startActivity(mIntent);//啓動
finish();//關閉appit

相關文章
相關標籤/搜索