3

突然、android.app.PendingIntent.getActivityメソッドが存在しないと主張するかなりの数のクラッシュレポートを受け取り始めました。

何がこれを引き起こしているのか誰もが知っていますか?

java.lang.NoSuchMethodError: android.app.PendingIntent.getActivity
    at com.example.notification.NotificationHelper.showNotification(NotificationHelper.java:37)
    at com.example.notification.NotificationHelper.showNotification(NotificationHelper.java:19)
    at com.example.content.sync.userdata.TaskSynchronizer$2.onResultReceived(TaskSynchronizer.java:142)
    at com.example.content.sync.BulkRequest.onResultReceived(BulkRequest.java:172)
    at com.example.content.sync.SyncAdapterHelper.pushOrPull(SyncAdapterHelper.java:201)
    at com.example.content.sync.SyncAdapterHelper.syncAll(SyncAdapterHelper.java:60)
    at com.example.content.sync.SyncAdapter.onPerformSync(SyncAdapter.java:139)
    at android.content.AbstractThreadedSyncAdapter$SyncThread.run(AbstractThreadedSyncAdapter.java:247)

以下は私のNotificationHelperクラスです:

public class NotificationHelper {

    public static void showNotification( Context context, String title, String content, MenuItem itemToStart ) {
        showNotification(context, title, content, itemToStart, null, itemToStart.id );
    }
    public static void showNotification( Context context, String title, String content, MenuItem itemToStart, Bundle extras ) {
        showNotification(context, title, content, itemToStart, extras, itemToStart.id );
    }

    public static void showNotification( Context context, String title, String content, MenuItem itemToStart, Bundle extras, int notificationId ) {
        /*
         * Check if user has disabled notifications
         */
        if ( !ProfileManager.areNotificationsEnabled( context ) ) {
            return;
        }

        NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
        Intent contentIntent = new Intent( context, LauncherActivity.class );
        contentIntent.putExtra( MFMainActivity.EXTRA_START_MENUITEM_ID, itemToStart.id );

        builder.setSmallIcon( R.drawable.ic_stat_notify )
               .setAutoCancel( true )
               .setContentTitle( title )
               .setContentText( content )
               .setContentIntent( PendingIntent.getActivity(context, 0, contentIntent, Intent.FLAG_ACTIVITY_NEW_TASK, extras ) );

        NotificationManager nm = (NotificationManager) context.getSystemService( Context.NOTIFICATION_SERVICE );
        nm.notify( notificationId, builder.build() );
    }
}

更新: Tusharが指摘したように、私は引数PendingIntent.getActivity()付きのメソッドを使い始めました。BundleこのメソッドはAPI16で最初に導入されたため、以前のAPIを使用するすべてのデバイスでクラッシュが発生しました。

contentIntent.replaceExtras( extras )私の解決策は、メソッドに直接ではなく、コンテンツインテントでエクストラを呼び出して渡すことでしたgetActivity()

4

1 に答える 1

5
getActivity(Context context, int requestCode, Intent intent, int flags, Bundle options)

Android API 16(4.1)でのみ導入されました。それより下の何かでアプリを実行すると、この例外がスローされます。

API 1で導入されたバージョンを使用することをお勧めします。このバージョンにgetActivity()は、署名があります(の欠如に注意してBundleください)。

getActivity(Context context, int requestCode, Intent intent, int flags)

ソース

于 2013-03-26T08:34:27.317 に答える