如何在BroadCast的通知中使用意图获得额外收益

时间:2015-11-04 17:18:43

标签: android android-notifications android-broadcastreceiver

我有通知,并且点击通知应该使用intent放置值。此值应在其他Activity中的BroadcastReceiver中接收。任何帮助如何解决?下面是我的代码:

public void showNotification(){
        Intent intent = new Intent(MainActivity.ACTION_NEW_MSG);
        intent.putExtra(MainActivity.MSG_FIELD, "TEST VALUES");
        intent.setAction(Intent.ACTION_MAIN);
        intent.addCategory(Intent.CATEGORY_LAUNCHER);
        ComponentName cn = new ComponentName(getApplicationContext(), MainActivity.class);
        intent.setComponent(cn);
        sendBroadcast(intent);
        contentIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);


     notification = new NotificationCompat.Builder(getApplicationContext())
                    .setCategory(Notification.CATEGORY_PROMO)
                    .setContentTitle("TEST VALUE")
                    .setContentText("Please click for")
                    .setSmallIcon(R.drawable.ic_launcher)
                    .setAutoCancel(false)
                    .setVisibility(1)
                    .setSubText("Time left: " + millisUntilFinished/1000)
                    .addAction(android.R.drawable.ic_menu_view, "View details", contentIntent)
                    .setContentIntent(contentIntent)
                    .setPriority(Notification.PRIORITY_HIGH)
                    .setVibrate(new long[]{0}).build();
            notificationManager =
                    (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
            int notification_id = 666;
            notificationManager.notify(notification_id, notification);
        }

低于MainActivity:

    private void initReceiver() {
    myReceiver = new MyReceiver();
    IntentFilter filter = new IntentFilter(ACTION_NEW_MSG);
    registerReceiver(myReceiver, filter);
}

public class MyReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent.getAction().equals(ACTION_NEW_MSG)) {
            String message = intent.getStringExtra(MSG_FIELD);
            Toast.makeText(getApplicationContext(),message, Toast.LENGTH_LONG).show();
            Log.e("TESTING", "TESTING");
        }
    }
}

1 个答案:

答案 0 :(得分:0)

为什么不使用服务而不是接收者?您可以像这样创建意图:find /html -type d -exec chmod 755 {} \; 您可以在意图中添加额外内容和操作。 在Service类中,只需覆盖此函数:

Intent i = new Intent(MainActivity.this, MyService.class);