Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 程序外啟動其他應用

android 程序外啟動其他應用

編輯:關於Android編程

情況:

在應用退出後,接收到推送消息時啟動應用

 

方法:

在監聽到消息時,添加以下代碼:

 

     Intent intent = new Intent();
     intent.setClass(context.getApplicationContext(), GLaunchActivity.class);
     intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
     context.getApplicationContext().startActivity(intent);


 

 

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