友盟推送支持自定义通知声音,在Android8.0以下,就很简单:
在您项目的res/raw/下放置命名为umeng_push_notification_default_sound。若无此文件,则默认使用系统的Notification声音
在Android8.0以上机型,那就需要自定义通知了,因为android8.0以上的Notification引入了Channel的概念,声音是定义在Channel里面的,所以我们需要重写的 UmengMessageHandler 的 getNotification方法,给大家写了个例子参考:
public static final String SOUND_PATH = "android.resource://com.test.demo/raw/umeng_push_notification_default_sound";
UmengMessageHandler messageHandler = new UmengMessageHandler() {
@Override
public Notification getNotification(Context context, UMessage msg) {
Uri soundUri = Uri.parse(SOUND_PATH);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel("default", "Default_Channel", NotificationManager.IMPORTANCE_HIGH);
channel.setSound(soundUri, Notification.AUDIO_ATTRIBUTES_DEFAULT);
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
if (notificationManager != null) {
notificationManager.createNotificationChannel(channel);
NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "default");
RemoteViews myNotificationView = new RemoteViews(context.getPackageName(),
R.layout.notification_view);
myNotificationView.setTextViewText(R.id.notification_title, msg.title);
myNotificationView.setTextViewText(R.id.notification_text, msg.text);
myNotificationView.setImageViewBitmap(R.id.notification_large_icon,
getLargeIcon(context, msg));
myNotificationView.setImageViewResource(R.id.notification_small_icon,
getSmallIconId(context, msg));
builder.setContent(myNotificationView)
.setSmallIcon(getSmallIconId(context, msg))
.setSound(soundUri)
.setTicker(msg.ticker)
.setAutoCancel(true);
return builder.build();
其中 notification_view 的自己写的通知的样式布局,给大家贴一下代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="#ffffff"
android:layout_height="64dp">
<RelativeLayout
android:id="@+id/upush_notification1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp">
<ImageView
android:id="@+id/notification_large_icon"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginLeft="10dp"
android:src="@drawable/ic_launcher"
android:scaleType="fitXY" />
<TextView
android:id="@+id/notification_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="3dp"
android:layout_toRightOf="@+id/notification_large_icon"
android:maxLines="1"
android:text="Title"
android:textColor="#000000"
android:textSize="16sp" />
<TextView
android:id="@+id/notification_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/notification_title"
android:layout_marginLeft="10dp"
android:layout_marginTop="3dp"
android:layout_toRightOf="@+id/notification_large_icon"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="false"
android:fadingEdge="horizontal"
android:singleLine="true"
android:text="Message"
android:textColor="#000000" />
<requestFocus />
</RelativeLayout>
<RelativeLayout
android:id="@+id/upush_notification2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<ImageView
android:id="@+id/notification_small_icon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" />
</RelativeLayout>
</RelativeLayout>
写完自定义的Notification之后,通过友盟推送的 PushAgent set 一下就可以了:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
mPushAgent.setMessageHandler(messageHandler);
打完收工,在友盟后台推送一条试一下就可以了
友盟推送支持自定义通知声音,在Android8.0以下,就很简单:在您项目的res/raw/下放置命名为umeng_push_notification_default_sound。若无此文件,则默认使用系统的Notification声音在Android8.0以上机型,那就需要自定义通知了,因为android8.0以上的Notification引入了Channel的概念,声音是定义在Cha...
友盟 Push 集成 ResClass 未初始化异常解决-原因分析-亲测
在集成友盟 Push 的时候遇到一个错,看了网上的一些说法,虽然有能解决问题的答案,但是感觉都不是很在点子上。我这里也给一下我的解决方案。
异常内容:
java.lang.IllegalArgumentException: ResClass未初始化,请确保你已经添加了必要的资源。同时确保你在混淆文件中添加了com.dati.zhiduoduo.world.R$* 。 field=umeng_push_notification_
描述很简洁,由上图可知,本次需求的重点工作是8.0以上版本的兼容问题。友盟给出的示例代码如下:
由以上代码可知,其实就是设置一个自定义Notification,但是以上代码用在8.0以上系统中并不可行。原因大家应该都清楚了,8.0以上通知栏新增了一个NotificationChannel的特性,如果没有设置channel通知渠道的话,就会导致通知无法展示。
设置本地声音
现在再来回到我们本次需求的重点:定制声音。通过以上分析我们已经知道了友盟自定义声音
这是一份详细集成友盟推送SDK的心酸历程,也集成了华为、小米、OPPO、vivo厂商通道,处理了app进程关闭、app在后台、app前台通知点击的处理
1 根据友盟自动集成文档,集成友盟SDK 友盟地址点击这里
2 集成后查看友盟demo,进行预初始化那些,打印友盟token等
3 使用友盟的推送工具测试集成是否OK
以上这三步最简单,就不多说了。
重点来了:
1 友盟的自定义点击通知时的打开动作 UmengNotificationClickHandler
UmengNotific...
经过上一篇的讲解,我们已经成功集成了PushSDK的推送功能,说的很详细相信大家也都测试成功了,从本篇开始我们将会接着上一篇继续讲解一些友盟推送的高级用法,还没有阅读上一篇的同学点击这里跳转哦。
灵活控制通知栏
1,设置通知栏图标
如果在发送后台没有指定通知栏图标,SDK将使用本地的默认图标,其中,大图标默认使用:drawable下的umeng_push_notification_defau...
appkey 以及Umeng Message Secret要填写申请的否则会注册不成功
1. Android 消息推送(Message) SDK 集成指南
1.1 版本: v1.7.0
友盟消息推送组件帮助您实时的推送消息给用户。
消息推送SDK 支持Andr
2,集成友盟SDK 参看官方文档http://dev.umeng.com/push/android/integration#1
3,若开发者需要实现对消息的完全自定义处理,则可以继承 UmengBaseIntentService, 实现自己的Service来完全控制达到消息的处理。
1,实现一个类,继承 UmengBaseInt
记得将 `YourAppKey` 和 `YourAppSecret` 替换为你在友盟官网上获取到的值。
4. 在需要接收推送的页面中,监听 `umengPush.receiveMessage` 事件,并处理接收到的消息:
```javascript
export default {
data() {
return {
message: '',
onShow() {
uni.$on('umengPush.receiveMessage', (res) => {
this.message = res.message;
onHide() {
uni.$off('umengPush.receiveMessage');
在上述代码中,将接收到的消息保存在 `message` 变量中,你可以根据业务需求进行处理。
这样,你就可以在 UniApp 中使用友盟消息推送了。希望对你有帮助!如有更多问题,请继续提问。
关于在华为手机上出现java.lang.SecurityException: Call from user 0 as user 132606 without permission的问题解决
金陵独孤求败:
Flutter系列之设置Dialog的宽度
凤姐yyy:
Flutter系列之设置Dialog的宽度
含泪装人妖: