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

软件工具
0 1189


通知的安卓代码:

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无广告纯净版 3208
Android QQ音乐 v11.3.7 定制版解锁免费听歌无广告版 3785
Android 草图大师SKP v1.5 解锁会员版 9121
Android OmoFun追漫神器 v4.2.1 无广告绿色版 6162
AdobeGenP Adobe全家桶系列激活工具 v3.5.0/3.4.14.1 绿色版 6748
Android 七猫免费听书 v1.4 解锁高级版 5133
超良心的抢票神器——Bypass1.16 4871
Android 玲珑加速器 v6.10.9.40 解锁无限时间 3509
Android 大师兄影视 v3.3.8 去广告会员版 2644
热门帖子
每周进账3000+的微信小程序,四种收益来源稳定增收,王牌积累型副业 45
某大佬逗你亿吓AI低模剧情视频制作教程:发一条爆一条,条条破百万播放,利用视频号创作者分成变现! 44
追剧达人 v2.1.5 安卓多源聚合一站式追剧影视APP 37
Trae终端智能体全栈实战课:从Skills、MCP到子智能体与ComfyUI,系统搭建AI自动化工作流 36
电影天堂 v8.0.2.0 安卓聚合追剧影视APP 32
最适合普通人的副业——拼多多虚拟电商,单店日均500+,可矩阵四个店铺 31
小柿子影视 v2.1.9 安卓超清全网追剧聚合软件 30
抖音点赞发作品跳sm解决技术,外来教程,效果自测 29