標題: 在自製APP裡開啟Gmail應用程式 On Jelly Bean 版本 [打印本頁] 作者: jackyai6 時間: 2013-2-26 10:47 標題: 在自製APP裡開啟Gmail應用程式 On Jelly Bean 版本 這是我在之前版本的片段程式碼:
Intent mailClient = new Intent(Intent.ACTION_VIEW);
mailClient.setClassName("com.google.android.gm", "com.google.android.gm.ConversationListActivity");
startActivity(mailClient);
自從手機更新到4.1.2版本之後,在運行時就會產生問題:
E/AndroidRuntime(19630): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.google.android.gm/com.google.android.gm.ComposeActivityGmail}; have you declared this activity in your AndroidManifest.xml?