Android推送通知网址 [英] Android Push Notification URL

查看:128
本文介绍了Android推送通知网址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序目前正在接收文本,图像和Firebase控制台的推送通知。我也想将URL从我的Firebase控制台发送到应用用户。单击通知用户将被重定向到特定的URL,即www.facebook.com。如何在以下代码中执行此操作?
请看这张图片是我想要的



图片来自Firebase通知控制台

  public class MyFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG =FirebaseMessageService;
位图位图;

/ **
*收到消息时调用。
*
* @param remoteMessage表示从Firebase云消息收到的消息的对象。
* /
@Override
public void onMessageReceived(RemoteMessage remoteMessage){
//有两种类型的消息数据消息和通知消息。在onMessageReceived中,数据消息被处理
//在这里,无论应用程序在前台还是后台。数据信息是传统上与GCM一起使用的
类型。当app
//在前台时,通知消息只在onMessageReceived中被接收。当应用程序在后台时,会显示自动生成的通知。
//当用户点击通知他们返回到应用程序。包含通知
//和数据有效载荷的消息被视为通知消息。 Firebase控制台始终发送通知
//消息。有关更多信息,请参阅:https://firebase.google.com/docs/cloud-messaging/concept-options
//
Log.d(TAG,From:+ remoteMessage.getFrom()) ;

//检查消息是否包含数据有效载荷。 (remoteMessage.getData()。size()> 0){
Log.d(TAG,Message data payload:+ remoteMessage.getData());
}

//检查消息是否包含通知负载。
if(remoteMessage.getNotification()!= null){
Log.d(TAG,Message Notification Body:+ remoteMessage.getNotification()。getBody());
}

//我发送的消息将有名为[message,image,AnotherActivity]的键和相应的值。
//您可以根据需要进行更改。
$ b $ //消息将包含推送消息
String message = remoteMessage.getData()。get(message);
// imageUri将包含要显示的图像的URL,通知
String imageUri = remoteMessage.getData()。get(image);
//如果AnotherActivity键的值为True,那么当用户点击通知时,应用程序AnotherActivity将被打开。
//如果AnotherActivity键的值为False,那么当用户点击通知时,应用程序中的MainActivity将被打开。
String TrueOrFlase = remoteMessage.getData()。get(AnotherActivity);

//从接收到的URL获取位图图像
bitmap = getBitmapfromUrl(imageUri);

sendNotification(message,bitmap,TrueOrFlase);

}


/ **
*创建并显示包含收到的FCM消息的简单通知。


private void sendNotification(String messageBody,Bitmap image,String TrueOrFalse){
Intent intent = new Intent(this,MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra(AnotherActivity,TrueOrFalse);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0 / * Request code * /,intent,
PendingIntent.FLAG_ONE_SHOT);

Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setLargeIcon(image)/ *通知图标图像* /
.setSmallIcon(R.drawable.firebase_icon)
。 setContentTitle(messageBody)
.setStyle(new NotificationCompat.BigPictureStyle()
.bigPicture(image))/ *图像通知* /
.setAutoCancel(true)
.setSound defaultSoundUri)
.setContentIntent(pendingIntent);

NotificationManager notificationManager =
(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(0 / *通知的ID * /,notificationBuilder.build());

$ b $ * b $ b *从获得的URL获取一个位图图像
* * /
public Bitmap getBitmapfromUrl(String imageUrl){
试试{
URL url = new URL(imageUrl);
HttpURLConnection连接=(HttpURLConnection)url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
位图位图= BitmapFactory.decodeStream(输入);
返回位图;

catch(Exception e){
// TODO自动生成的catch块
e.printStackTrace();
返回null;




$ b

解决方案

这是我在我的应用程序中实现的用于推送链接数据的代码

  public class MyFirebaseMessagingService扩展了FirebaseMessagingService {
位图位图;
@Override
public void onMessageReceived(RemoteMessage remoteMessage){
String message = remoteMessage.getData()。get(message);
// imageUri将包含要显示的图像的URL,通知
String imageUri = remoteMessage.getData()。get(image);
String link = remoteMessage.getData()。get(link);

//从接收到的URL获取位图图像
bitmap = getBitmapfromUrl(imageUri);
sendNotification(消息,位图,链接);

}


/ **
*创建并显示包含收到的FCM消息的简单通知。
* /

private void sendNotification(String messageBody,Bitmap image,String link){
Intent intent = new Intent(this,MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra(LINK,link);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0 / * Request code * /,intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setLargeIcon(image)/ *通知图标图像* /
.setSmallIcon(R.drawable.icon)
。 setContentTitle(messageBody)
.setStyle(new NotificationCompat.BigPictureStyle()
.bigPicture(image))/ *图像通知* /
.setAutoCancel(true)
.setSound defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(0 / *通知的ID * /,notificationBuilder.build());

public Bitmap getBitmapfromUrl(String imageUrl){
try {
URL url = new URL(imageUrl);
HttpURLConnection连接=(HttpURLConnection)url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
位图位图= BitmapFactory.decodeStream(输入);
返回位图;

} catch(Exception e){
// TODO自动生成的catch块
e.printStackTrace();
返回null;

$ b}}

这是MainActivity打开链接在我的WebView或其他浏览器depand您的要求通过意图。

  if(getIntent()。getExtras()!= null ){
if(getIntent()。getStringExtra(LINK)!= null){
Intent i = new Intent(this,WebViewActivity.class);
i.putExtra(link,getIntent()。getStringExtra(LINK));
MainActivity.this.startActivity(i);
finish();
}}

现在在WebViewActivity中获取链接并在WebView中加载url

  WebView webView =(WebView)findViewById(R.id.webView); 
Intent i = getIntent();
String url = i.getStringExtra(link);
webView.loadUrl(url);


My application is currently receiving Text , Image and both as a push notification from Firebase console. I want to send URL too as a notification from my Firebase console to the app user.On clicking the notification user shall be redirected to the specific url i.e. www.facebook.com .How can i do this in following code? Kindly see the image thats what i want

Image From firebase notification console

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    private static final String TAG = "FirebaseMessageService";
    Bitmap bitmap;

    /**
     * Called when message is received.
     *
     * @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
     */
    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        // There are two types of messages data messages and notification messages. Data messages are handled
        // here in onMessageReceived whether the app is in the foreground or background. Data messages are the type
        // traditionally used with GCM. Notification messages are only received here in onMessageReceived when the app
        // is in the foreground. When the app is in the background an automatically generated notification is displayed.
        // When the user taps on the notification they are returned to the app. Messages containing both notification
        // and data payloads are treated as notification messages. The Firebase console always sends notification
        // messages. For more see: https://firebase.google.com/docs/cloud-messaging/concept-options
        //
        Log.d(TAG, "From: " + remoteMessage.getFrom());

        // Check if message contains a data payload.
        if (remoteMessage.getData().size() > 0) {
            Log.d(TAG, "Message data payload: " + remoteMessage.getData());
        }

        // Check if message contains a notification payload.
        if (remoteMessage.getNotification() != null) {
            Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
        }

        //The message which i send will have keys named [message, image, AnotherActivity] and corresponding values.
        //You can change as per the requirement.

        //message will contain the Push Message
        String message = remoteMessage.getData().get("message");
        //imageUri will contain URL of the image to be displayed with Notification
        String imageUri = remoteMessage.getData().get("image");
        //If the key AnotherActivity has  value as True then when the user taps on notification, in the app AnotherActivity will be opened.
        //If the key AnotherActivity has  value as False then when the user taps on notification, in the app MainActivity will be opened.
        String TrueOrFlase = remoteMessage.getData().get("AnotherActivity");

        //To get a Bitmap image from the URL received
        bitmap = getBitmapfromUrl(imageUri);

        sendNotification(message, bitmap, TrueOrFlase);

    }


    /**
     * Create and show a simple notification containing the received FCM message.
     */

    private void sendNotification(String messageBody, Bitmap image, String TrueOrFalse) {
        Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.putExtra("AnotherActivity", TrueOrFalse);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setLargeIcon(image)/*Notification icon image*/
                .setSmallIcon(R.drawable.firebase_icon)
                .setContentTitle(messageBody)
                .setStyle(new NotificationCompat.BigPictureStyle()
                        .bigPicture(image))/*Notification with Image*/
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
    }

    /*
    *To get a Bitmap image from the URL received
    * */
    public Bitmap getBitmapfromUrl(String imageUrl) {
        try {
            URL url = new URL(imageUrl);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setDoInput(true);
            connection.connect();
            InputStream input = connection.getInputStream();
            Bitmap bitmap = BitmapFactory.decodeStream(input);
            return bitmap;

        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return null;

        }
    }
}

解决方案

This is the code that i have implemented in my app for pushing link with data

public class MyFirebaseMessagingService extends FirebaseMessagingService {
Bitmap bitmap;
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    String message = remoteMessage.getData().get("message");
    //imageUri will contain URL of the image to be displayed with Notification
    String imageUri = remoteMessage.getData().get("image");
    String link=remoteMessage.getData().get("link");

    //To get a Bitmap image from the URL received
    bitmap = getBitmapfromUrl(imageUri);
    sendNotification(message, bitmap,link);

}


/**
 * Create and show a simple notification containing the received FCM message.
 */

private void sendNotification(String messageBody, Bitmap image, String link) {
    Intent intent = new Intent(this, MainActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    intent.putExtra("LINK",link);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);
    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
            .setLargeIcon(image)/*Notification icon image*/
            .setSmallIcon(R.drawable.icon)
            .setContentTitle(messageBody)
            .setStyle(new NotificationCompat.BigPictureStyle()
                    .bigPicture(image))/*Notification with Image*/
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);
    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
public Bitmap getBitmapfromUrl(String imageUrl) {
    try {
        URL url = new URL(imageUrl);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setDoInput(true);
        connection.connect();
        InputStream input = connection.getInputStream();
        Bitmap bitmap = BitmapFactory.decodeStream(input);
        return bitmap;

    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        return null;

    }
}}

And this is MainActivity to open link in my WebView or other browser depand on your requirement through intents.

if (getIntent().getExtras() != null) {
        if (getIntent().getStringExtra("LINK")!=null) {
            Intent i=new Intent(this,WebViewActivity.class);
            i.putExtra("link",getIntent().getStringExtra("LINK"));
            MainActivity.this.startActivity(i);
            finish();
        }}

Now in WebViewActivity get link and load url in WebView

    WebView webView = (WebView) findViewById(R.id.webView);
    Intent i = getIntent();
    String url = i.getStringExtra("link");
    webView.loadUrl(url);

这篇关于Android推送通知网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆