短视频带货源码,使用消息通知,不显示可能的原因

软件工具
0 1147


通知的安卓代码:

public class MyService extends Service {
…
public void onCreate() {
super.onCreate();
Log.d(“Myservice”, "onCreate execute ");
Intent intent = new Intent(this,MainActivity.class);
PendingIntent pi = PendingIntent.getActivity(this,0,intent,0);
Notification notification =new NotificationCompat.Builder(this)
.setContentTitle(“This is content title”)
.setContentTitle(“This is content text”)
.setTicker(“You have import thing to do it”)
.setWhen(System.currentTimeMillis())
.setSmallIcon(R.mipmap.ic_launcher)
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
.setContentIntent(pi)
.build();
startForeground(1,notification);
}
}


这是安卓的服务中的代码,在活动MainActivity内要启动MyService:

case R.id.button2:
Intent intent = new Intent(this, MyService.class);
startService(intent);
break;


或者直接按钮的点击事件中显示通知:

case R.id.show:
Intent intent1 = new Intent(this,MainActivity.class);
PendingIntent pi = PendingIntent.getActivity(this,0,intent1,0);
NotificationManager manager =(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
Notification notification = null;
notification =new NotificationCompat.Builder(this)
.setContentTitle(“This is content title”)
.setContentTitle(“This is content text”)
.setWhen(System.currentTimeMillis())
.setSmallIcon(R.mipmap.ic_launcher)
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
.setContentIntent(pi)
.build();
manager.notify(2,notification);
break;



精选帖子
Android 可可影视 v3.3.6无广告纯净版 3038
Android QQ音乐 v11.3.7 定制版解锁免费听歌无广告版 3617
Android 草图大师SKP v1.5 解锁会员版 8980
Android OmoFun追漫神器 v4.2.1 无广告绿色版 6014
AdobeGenP Adobe全家桶系列激活工具 v3.5.0/3.4.14.1 绿色版 6594
Android 七猫免费听书 v1.4 解锁高级版 5015
超良心的抢票神器——Bypass1.16 4746
Android 玲珑加速器 v6.10.9.40 解锁无限时间 3396
Android 大师兄影视 v3.3.8 去广告会员版 2517
热门帖子
从写脚本到接大单:这套AI广告课,让你在家就能跑通整个生意【原创双语字幕】 64
AI漫剧短剧进阶课|电脑+手机双端实操教学|影视剧对口型人物吃瓜×解压末日庇护所全程讲解,高阶技巧全掌握 59
Suno AI零基础音乐创作课:账号准备→界面解析→一键成曲→自定义模式,快速上手AI作曲 55
Codex从入门到实战完整课|充值·安装·接入DeepSeek,记忆·插件·Skill·CLI·MCP全拆解 50
Codex自媒体IP系统课:IP诊断/热点抓取/IP蒸馏 Skill,爆款复刻数字人多平台自动发布教程 50
漫画学Python·办公自动化全实战:Excel/Word/PPT/PDF/邮件/爬虫一网打尽 47
2026Codex 智能体实战课:工具配置精讲|提示词优化技巧|AI 技能封装|全场景自动化落地教程 44
番茄小说达人零门槛副业,不用创作基础,轻松日入500+,碎片化时间稳定增收 42
AI编程 Claude Code快速入门到精通:功能×命令×核心模式×工作流×Skill搭建×插件开发全技能 42