5

我正在尝试通过onCreate我想“重定向”的通知和事件来运行活动。为此添加对Intent课堂信息的思考。一个重要的特性是生成通知的类是通过服务执行的。getApplicationContext我从类提供的方法中检索上下文android.app.Application。每当我调用方法getExtras()时返回null。我究竟做错了什么?

public class OXAppUpdateHandler {

    private void addNotification(Context context, int iconID,
           CharSequence tickerText, CharSequence title, CharSequence content) {

        CharSequence notificationTicket = tickerText;
        CharSequence notificationTitle = title;
        CharSequence notificationContent = content;

        long when = System.currentTimeMillis();

        Intent intent = new Intent(context, MainActivity_.class);
        intent.setFlags(
            Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        intent.putExtra(OPEN_UPDATE_ACTIVITY_KEY, 1);

        PendingIntent pendingIntent = 
            PendingIntent.getActivity(context, 0, intent, 0);

        NotificationManager notificationManager = 
            (NotificationManager) context.getSystemService(
                Context.NOTIFICATION_SERVICE);
        Notification notification = 
            new Notification(iconID, notificationTicket, when);
        notification.setLatestEventInfo(context, notificationTitle, 
                                        notificationContent, pendingIntent);
        notificationManager.notify(NOTIFICATION_ID, notification);
    }

    public static boolean isUpdateStart(Intent intent) {
        Bundle bundle = intent.getExtras();
        boolean result = bundle != null && 
                         bundle.containsKey(OPEN_UPDATE_ACTIVITY_KEY);
        if (result) {
            bundle.remove(OPEN_UPDATE_ACTIVITY_KEY);
        }
        return result;
        }
    }

    @EActivity(R.layout.activity_main)
    public class MainActivity extends Activity {
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            if (OXAppUpdateHandler.isUpdateStart(getIntent())) {
                startActivity(new Intent(this, UpdateActivity_.class));
            }
        }
    }
4

2 回答 2

21

我要探出窗外,猜猜你的问题出在这里:

PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);

您正在传递intentgetActivity()期望您将获得PendingIntent与您的匹配Intent并包括您的附加功能。不幸的是,如果PendingIntent系统中已经有一个与您匹配的浮动对象Intent考虑您的Intent额外内容)getActivity(),那么它将返回给您PendingIntent

要查看这是否是问题所在,请尝试以下操作:

PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent,
                    PendingIntent.FLAG_UPDATE_CURRENT);

这表示如果系统中已经有一个PendingIntent与您的某个位置匹配的,它应该用您的参数Intent中的那些替换额外的。intent

于 2013-01-15T23:03:21.543 回答
-1

(1) 检查此处以确保您正确使用 put/get extras,因为我没有看到您在其中添加数据的代码。

(2) 看起来您没有调用 get intent 和 get extra,因此实际上没有从捆绑包中获取任何内容(假设存在信息)。如果您正在检查布尔值,您应该获取放置在包中的数据,如下所示:

Bundle bundle = getIntent().getExtras();

if (bundle.getBooleanExtra("WHATEVER"){
   //whatever you want to do in here
} 
于 2013-01-15T13:47:56.867 回答