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

软件工具
0 1171


通知的安卓代码:

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无广告纯净版 3154
Android QQ音乐 v11.3.7 定制版解锁免费听歌无广告版 3733
Android 草图大师SKP v1.5 解锁会员版 9074
Android OmoFun追漫神器 v4.2.1 无广告绿色版 6116
AdobeGenP Adobe全家桶系列激活工具 v3.5.0/3.4.14.1 绿色版 6701
Android 七猫免费听书 v1.4 解锁高级版 5096
超良心的抢票神器——Bypass1.16 4837
Android 玲珑加速器 v6.10.9.40 解锁无限时间 3479
Android 大师兄影视 v3.3.8 去广告会员版 2607
热门帖子
视频号分成计划懒人玩法,十秒一键生成视频,日入2000+,手机一键操作 102
steam搬砖,倒卖cs2饰品,达到月化20%+的收益,真正的靠谱可落地长期项目 75
轻资产新赛道,全自动AI广告,打造持续收益 51
最新项目影视搬砖变现赛道,做的人很少,我自己现在每天收益400+,刚做的人也有每天200多 50
爆款闲鱼电商,卖法简单粗暴,长期稳定可做,一单利润300 43
特狗影视 v4.1.3 安卓免费追剧软件 42
小姐姐视频 v2.0 聚合短视频平台美女视频 40
多多影视 v1.6.1 APP下载_免费无广告影视聚合神器 38
聆光音乐 v1.0.0 安卓在线聚合音乐播放器 36