使用Android自定义模板重复本机通知

Vas*_*ski 12 android push-notification react-native

我一直在尝试找到一个react-native模块,它允许Android的自定义通知模板.我试过https://github.com/neson/react-native-system-notificationhttps://github.com/zo0r/react-native-push-notification但似乎他们不允许自定义模板对于android通知 - 仅设置默认模板值.我想尝试实现类似的东西:

在此输入图像描述

小智 1

您可以使用react-native-music-control 库在通知面板上移动音乐控件。

您可以通过以下方法自定义它。阅读文档了解更多信息。

  MusicControl.setNowPlaying({ 
title: 'Billie Jean',
artwork: 'https://i.imgur.com/e1cpwdo.png', // URL or RN's image require()
artist: 'Michael Jackson',
album: 'Thriller',
genre: 'Post-disco, Rhythm and Blues, Funk, Dance-pop',
duration: 294, // (Seconds)
description: '', // Android Only
color: 0xFFFFFF, // Notification Color - Android Only
date: '1983-01-02T00:00:00Z', // Release Date (RFC 3339) - Android Only
rating: 84, // Android Only (Boolean or Number depending on the type)
notificationIcon: 'my_custom_icon' // Android Only (String), Android Drawable resource name for a custom notification icon
})
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述