点击Firebase通知时显示特定活动

时间:2016-06-09 16:13:45

标签: android-activity firebase firebase-cloud-messaging firebase-notifications

当用户点击从Firebase控制台发送的通知时,我需要启动特定的Android活动,仅当用户点击通知时。如何在以下两种情况下实现:

  1. 应用程序未在后台打开或应用程序正在运行
  2. App位于前台

1 个答案:

答案 0 :(得分:4)

您可以通过两种方式实现这一目标,

<强> 1。第一种方式

在通知有效负载中添加click_action, jNotification.put(&#34; click_action&#34;,&#34; OPEN_ACTIVITY_1&#34;);

private void pushNotification(String token) {
        JSONObject jPayload = new JSONObject();
        JSONObject jNotification = new JSONObject();
        JSONObject jData = new JSONObject();
        try {
            jNotification.put("title", "Google I/O 2016");
            jNotification.put("text", "Firebase Cloud Messaging (App)");
            jNotification.put("sound", "default");
            jNotification.put("badge", "1");
            jNotification.put("click_action", "OPEN_ACTIVITY_1");

            jData.put("picture_url", "http://opsbug.com/static/google-io.jpg");

            jPayload.put("to", token);
            //jPayload.put("to", "/topics/news");
            //jPayload.put("condition", "'logined' in topics || 'news' in topics");
            //jPayload.put("registration_ids", jData);
            jPayload.put("priority", "high");
            jPayload.put("notification", jNotification);
            jPayload.put("data", jData);

            URL url = new URL("https://fcm.googleapis.com/fcm/send");
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Authorization", AUTH_KEY);
            conn.setRequestProperty("Content-Type", "application/json");
            conn.setDoOutput(true);

            // Send FCM message content.
            OutputStream outputStream = conn.getOutputStream();
            outputStream.write(jPayload.toString().getBytes());

            // Read FCM response.
            InputStream inputStream = conn.getInputStream();
            final String resp = convertStreamToString(inputStream);

            Handler h = new Handler(Looper.getMainLooper());
            h.post(new Runnable() {
                @Override
                public void run() {
                    Log.e("Response", resp);
                    //txtStatus.setText(resp);
                }
            });
        } catch (JSONException | IOException e) {
            e.printStackTrace();
        }
    }

将此添加到AndroidManifest.xml

        <activity android:name="com.example.fcm.SecondActivity">
            <intent-filter>
                <action android:name="OPEN_ACTIVITY_1" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

MyFirebaseMessagingService.java

  public class MyFirebaseMessagingService extends FirebaseMessagingService {
        @Override
        public void onMessageReceived(RemoteMessage remoteMessage) {
            super.onMessageReceived(remoteMessage);

            // If the application is in the foreground handle both data and notification messages here.
            // Also if you intend on generating your own notifications as a result of a received FCM
            // message, here is where that should be initiated. See sendNotification method below.

            RemoteMessage.Notification notification = remoteMessage.getNotification();
            Map<String, String> map = remoteMessage.getData();

            sendNotification(notification.getTitle(), notification.getBody(), map);
        }

        private void sendNotification(String title, String body, Map<String, String> map) {
            Bitmap icon = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);

            Intent intent = new Intent(this, MainActivity.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);

            NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                    .setContentTitle(title)
                    .setContentText(body)
                    .setAutoCancel(true)
                    .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                    .setContentIntent(pendingIntent)
                    .setContentInfo(title)
                    .setLargeIcon(icon)
                    .setSmallIcon(R.mipmap.ic_launcher);

            try {
                String picture_url = map.get("picture_url");
                if (picture_url != null && !"".equals(picture_url)) {
                    URL url = new URL(picture_url);
                    Bitmap bigPicture = BitmapFactory.decodeStream(url.openConnection().getInputStream());
                    notificationBuilder.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(bigPicture).setSummaryText(body));
                }
            } catch (IOException e) {
                e.printStackTrace();
            }

            notificationBuilder.setDefaults(Notification.DEFAULT_VIBRATE);
            notificationBuilder.setLights(Color.YELLOW, 1000, 300);

            NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
            notificationManager.notify(0, notificationBuilder.build());
        }
    }

SecondActivity.java

public class SecondActivity extends AppCompatActivity {
    private static final String TAG = "SecondActivity";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);

        Bundle bundle = getIntent().getExtras();

        if (bundle != null) {
            for (String key : bundle.keySet()) {
                Object value = bundle.get(key);
                Log.d(TAG, "Key: " + key + " Value: " + value.toString());
            }
        }
    }
}

<强> 2。第二种方式

通过数据有效负载发送密钥,如下所示,通过getIntent()获取MainActivity中的密钥,并调用特定的活动或片段。

        json1.put("title","Your Title");  
        json1.put("body","body content");  
        json1.put("message","Your Message");  
        json1.put("screen","2");   //secondFragment is 2nd position in nav drawer
        json.put("data", json1); 

MainActivity.java

Intent intent = getIntent();
        String pos = getIntent().getStringExtra("screen");
        if(pos !=null){
            selectDrawerItem(navigationView.getMenu().getItem(Integer.parseInt(pos)));
        }

GITHUB中的示例项目 https://github.com/Google-IO-extended-bangkok/FCM-Android

相关问题