ActivityNotFoundException
このクラスは ICS では問題なく動作しますが、Jelly Beanでは失敗します。どうしてか知ってる?ありがとうございました。
public class EmailSender {
public static Intent getSendEmailIntent(Context context, String email,
String subject, String body, File fileName, String chooserTitle) {
final Intent emailIntent = new Intent(
android.content.Intent.ACTION_SEND);
//Explicitly only use Gmail to send
emailIntent.setClassName("com.google.android.gm", "com.google.android.gm.ComposeActivityGmail");
emailIntent.setType("plain/text");
//Add the recipients
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
new String[]{email});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, body);
//Add the attachment by specifying a reference to our custom ContentProvider
//and the specific file of interest
emailIntent.putExtra(
Intent.EXTRA_STREAM,
Uri.fromFile(fileName));
return emailIntent;
}
}
Jelly Bean で例外が発生します。
11-19 15:32:07.852: E/AndroidRuntime(19630): android.content.ActivityNotFoundException: 明示的なアクティビティ クラスが見つかりません {com.google.android.gm/com.google.android.gm.ComposeActivityGmail}; AndroidManifest.xml でこのアクティビティを宣言しましたか?
必要な場合の完全なトレース:
11-19 15:32:07.852: E/AndroidRuntime(19630): android.content.ActivityNotFoundException: 明示的なアクティビティ クラスが見つかりません {com.google.android.gm/com.google.android.gm.ComposeActivityGmail}; AndroidManifest.xml でこのアクティビティを宣言しましたか? 11-19 15:32:07.852: E/AndroidRuntime(19630): android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1618) 11-19 15:32:07.852: E/AndroidRuntime(19630): Android で。 app.Instrumentation.execStartActivity(Instrumentation.java:1417) 11-19 15:32:07.852: E/AndroidRuntime(19630): android.app.Activity.startActivityForResult(Activity.java:3370) 11-19 15:32: 07.852: E/AndroidRuntime (19630): android.app.Activity.startActivityForResult(Activity.java:3331) 11-19 15:32:07.852: E/AndroidRuntime (19630): android.support.v4.app.FragmentActivity で.