带有图像的可扩展字符串不适用于推送通知

Posted

技术标签:

【中文标题】带有图像的可扩展字符串不适用于推送通知【英文标题】:Spannable string with image not working with push notification 【发布时间】:2016-04-21 12:30:46 【问题描述】:

我正在尝试在推送通知中使用可扩展字符串和图像。它不工作。实际上,我想在 wattsapp 等推送通知上显示表情符号。如果我使用简单的可扩展字符串,它就可以工作。与图像相同的可跨越字符串与 textview 一起工作正常。

为此,我也尝试了自定义推送通知,但没有成功。

我的代码如下:-

MainActivity.class

   package com.example.tt.notificationtest;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.SpannableStringBuilder;
import android.text.style.BackgroundColorSpan;
import android.text.style.ImageSpan;
import android.text.style.RelativeSizeSpan;
import android.view.View;
import android.widget.Button;
import android.widget.RemoteViews;
import android.widget.TextView;

public class MainActivity extends Activity 
    Button btnNotification;
    TextView txtMsg;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txtMsg = (TextView) findViewById(R.id.txtMsg);
        btnNotification = (Button) findViewById(R.id.btnNotification);
        btnNotification.setOnClickListener(new View.OnClickListener() 
            @Override
            public void onClick(View view) 
                Notify("Testing", "msg");
                Notify2();
            
        );
    

    private void Notify2()
        int icon = R.drawable.asdf;
        long when = System.currentTimeMillis();
        Notification notification = new Notification(icon, "Custom Notification", when);

        NotificationManager mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

        RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom_notification);
        contentView.setImageViewResource(R.id.image, R.drawable.asdf);

        SpannableString ss = new SpannableString("abcd");
        Drawable d = getResources().getDrawable(R.drawable.asdf);
        d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
        ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);
        ss.setSpan(span, 0, 3, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);

        contentView.setTextViewText(R.id.title, "Custom notification");
        contentView.setTextViewText(R.id.text, ss);
        notification.contentView = contentView;

        Intent notificationIntent = new Intent(this, MainActivity.class);
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
        notification.contentIntent = contentIntent;

        notification.flags |= Notification.FLAG_NO_CLEAR; //Do not clear the notification
        notification.defaults |= Notification.DEFAULT_LIGHTS; // LED
        notification.defaults |= Notification.DEFAULT_VIBRATE; //Vibration
        notification.defaults |= Notification.DEFAULT_SOUND; // Sound

        mNotificationManager.notify(1, notification);
    

    private void Notify(String notificationTitle, String notificationMessage)

        //This is working

//        SpannableString ss = new SpannableString("Large\n\n" );   // index 103 - 112
//        ss.setSpan(new BackgroundColorSpan(Color.CYAN), 0, 5, 0);



        //this is not working
        SpannableString ss = new SpannableString("abcd");
        Drawable d = getResources().getDrawable(R.drawable.asdf);
        d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
        ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);
        ss.setSpan(span, 0, 3, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
        txtMsg.setText(ss);

        Intent i = new Intent(MainActivity.this, MainActivity.class);
        PendingIntent pi=PendingIntent.getActivity(this, 0,
                i,
                0);

        Notification notification = new NotificationCompat.Builder(MainActivity.this)
                .setContentTitle(notificationTitle)
                .setContentText(ss)
                .setSmallIcon(R.drawable.asdf)
//                .setLargeIcon(bitmap)
//                .setDefaults(Notification.DEFAULT_ALL)
                .setStyle(new NotificationCompat.BigTextStyle().bigText(ss))
                .setAutoCancel(true)
                .setContentIntent(pi)
                .build();

        NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        nm.notify(2, notification);
    


Activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.tt.notificationtest.MainActivity">

    <TextView
        android:id="@+id/txtMsg"
        android:layout_
        android:layout_ />

    <Button
        android:layout_
        android:layout_
        android:text="Click Me"
        android:id="@+id/btnNotification"/>
</LinearLayout>

custom_notification.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_
    android:layout_
    android:padding="10dp">

    <ImageView
        android:id="@+id/image"
        android:layout_
        android:layout_
        android:layout_alignParentLeft="true"
        android:layout_marginRight="10dp" />

    <TextView
        android:id="@+id/title"
        android:layout_
        android:layout_
        android:layout_toRightOf="@id/image" />

    <TextView
        android:id="@+id/text"
        android:layout_
        android:layout_
        android:layout_below="@id/title"
        android:layout_toRightOf="@id/image" />
</RelativeLayout>

【问题讨论】:

您能找到解决方案吗? 直到现在。我在下面得到了一些答案,但对这些答案不满意。 @AnandKumarJha 你找到解决方案了吗? 现在还没有 【参考方案1】:

这是我让它工作的唯一方法:

跨区消息; mssg = html.fromHtml(URLDecoder.decode("%F0%9F%98%82"));

它可能因您接收文本的方式而异,在我的情况下,我使用 unicode 将表情符号发送到 GCM 服务器,我不必担心 URLDecoder,但如果我收到从一个表情符号 php 库,而不是来自 android 设备,正确显示它的唯一方法是使用 URLDecoder。

因此,如果您使用 GCM,它应该只使用

跨区消息; mssg = Html.fromHtml(intent.getStringExtra("message"));

希望对你有帮助!

【讨论】:

感谢您的建议,但我想显示自定义图像而不是 unicode。 @AnandKumarJha ***.com/questions/10887574/… 这个答案将在不使用 HTML 的情况下解决您的问题。【参考方案2】:

Mixpanel 有在推送通知中发送表情符号的有效解决方案。你可以找到描述here

【讨论】:

"mp_message": "High Five, bro \u270B" 这也是使用 unicode "\u270B" 我想插入自定义图像。 我不明白,你想把自定义图像放在文本中吗?在通知中,您只能放置 3 张图片(据我所知)左侧的大图标、右侧的小图标以及底部的大图像,但在文本中您只能使用字符串值(包括来自 UTF-8 的表情符号) 使用 unicode 可以做到。实际上,我已经在聊天中管理了我的自定义表情,它运行良好,但在推送通知中不起作用。例如,我得到“):”并将其转换为相应的图像以将字符串显示为表情,但在字符串中显示为“):”..【参考方案3】:

您在此处使用已弃用的代码

Notification notification = new Notification(icon, "Custom Notification", when);

改为使用您的 RemoteView,例如 NotificationBuilder.sentContent(remoteView)

看看这个Custom Notification例子

【讨论】:

以上是关于带有图像的可扩展字符串不适用于推送通知的主要内容,如果未能解决你的问题,请参考以下文章

推送通知 php 代码不适用于 Android

Objective C-推送通知不适用于 Cloudkit

iOS VoIP 推送通知/PushKit 不适用于增强通知格式

Firebase 推送通知不适用于试飞

推送通知不适用于生产

推送通知不适用于 FCM