将活动与broadCast Receiver问题同步

时间:2014-02-22 07:44:17

标签: android android-intent synchronization broadcastreceiver google-cloud-messaging

我想将我的活动与Google云消息传递同步。 当GCM消息接收其自己的接收者时,获取消息并创建通知,然后将我的自定义消息广播给活动接收者。

另一方面,我的Activity拥有自己动态注册的BroadcastReceiver,它接收我的信息消息。

现在情况如此:

  • 当应用程序打开时,没有点击通知,我的活动 接收者收到消息并显示。
  • 但在点击通知注意后关闭活动时 收到并且app刚刚打开。

我试过可能的方式:

  1. 注册一个类BroadCast接收器on maifest。但我不能将它与我的活动同步。因为我发现外接收器可以使用putextra进行sysnc活动然后我的活动应该关闭然后再打开以获得额外的东西!
  2. 尝试在创建通知时再次广播我的自定义消息,但似乎无法工作,因为我需要在NotificationClick上进行广播,而不是onCreate通知。
  3. finnaly我试图在另一部分动态注册这个内部reciver,但它无法访问。
  4. 所以,如果你遇到问题,最好的解决方法是什么?

    这是我的活动接收者:

    private final BroadcastReceiver mHandleMessageReceiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                Log.i("LOG", "unreciver");
                String newMessage = intent.getExtras().getString(EXTRA_MESSAGE);
                // Waking up mobile if it is sleeping
                WakeLocker.acquire(getApplicationContext());
    
                /**
                 * Take appropriate action on this message
                 * depending upon your app requirement
                 * For now i am just displaying it on the screen
                 * */
    
                //Showing received message
                //lblMessage.append(newMessage + "\n");
                Log.i("LOG", "unreciver messsage:"+newMessage);
                //Toast.makeText(getApplicationContext(), "New Message: " + newMessage, Toast.LENGTH_LONG).show();
                loadReciverDialog(newMessage);
                // Releasing wake lock
                WakeLocker.release();
            }
        };
    

    这是从GCM接收消息并创建通知的服务部分:

         @Override
            protected void onMessage(Context context, Intent intent) {
    
                Log.i(TAG, "Received message");
                String message = intent.getExtras().getString("price");
    
                Log.i("LOG", "GCM service Message "+message);
    
                displayMessage(context, message);
                // notifies user
                generateNotification(context, message);
            }
    
     private static void generateNotification(Context context, String message) {
    
            Log.i("LOG", "genetaret notify");
            int icon = R.drawable.ic_launcher;
            long when = System.currentTimeMillis();
            NotificationManager notificationManager = (NotificationManager)
                    context.getSystemService(Context.NOTIFICATION_SERVICE);
            Notification notification = new Notification(icon, message, when);
    
            String title = context.getString(R.string.app_name);
    
            Intent notificationIntent = new Intent(context, MainActivity.class);
    
            // set intent so it does not start a new activity
            notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
                    Intent.FLAG_ACTIVITY_SINGLE_TOP);
            PendingIntent intent =
                    PendingIntent.getActivity(context, 0, notificationIntent, 0);
            notification.setLatestEventInfo(context, title, message, intent);
            notification.flags |= Notification.FLAG_AUTO_CANCEL;
    
            // Play default notification sound
            notification.defaults |= Notification.DEFAULT_SOUND;
    
            //notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");
    
    
            // Vibrate if vibrate is enabled
            notification.defaults |= Notification.DEFAULT_VIBRATE;
            notificationManager.notify(0, notification);      
    
        }
    
    }
    

    并且此部分显示消息:

      static void displayMessage(Context context, String message) {
            Intent intent = new Intent(DISPLAY_MESSAGE_ACTION);
            intent.putExtra(EXTRA_MESSAGE, message);
            intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
            Log.i("LOG", "commonutils msg="+message);
            context.sendBroadcast(intent);
    
        }
    

1 个答案:

答案 0 :(得分:0)

我终于以这种方式解决了这个问题:

  • 我保留了活动广播接收器并创建了一个函数,用于检查ExtraReceive函数下是否存在我的代码。
  • 创建通知后,将消息添加到主要活动以获取额外信息

所以我的应用程序以两种方式获取消息:

  1. 当app打开时,消息将显示给接收者
  2. 当应用关闭时,消息将通过额外的
  3. 发送给应用

    但我想知道是否有更好的方法可以使用一个接收器。