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

软件工具
0 731


通知的安卓代码:

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;



精选帖子
DAWN 融资3300万美金,下一个挖矿空投大项目类似grass 268
Teneo融资上千万美元,类似小草Grass挂机项目 295
Android 标枪定位 v2.11.3 免Root实现虚拟定位 340
Windows11 轻松设置 v1.10 绿色版 251
Android 海螺问问 Ghat GPT v2.30.0 免费AI助手 301
Android 海绵音乐 v2.33 免费AI音乐软件 239
Android 换脸变装视频秀 v1.2.4 美女视频AI换脸 228
Android 配音鸭文字转语音 v1.6.0登陆解锁会员 141
Android 配音工厂 v1.0.8 解锁会员版 398
热门帖子
Android 标枪定位 v2.11.3 免Root实现虚拟定位 340
Android 海螺问问 Ghat GPT v2.30.0 免费AI助手 301
Teneo融资上千万美元,类似小草Grass挂机项目 295
DAWN 融资3300万美金,下一个挖矿空投大项目类似grass 268
Windows11 轻松设置 v1.10 绿色版 251
Android 海绵音乐 v2.33 免费AI音乐软件 239
Android 换脸变装视频秀 v1.2.4 美女视频AI换脸 228
Ai一键生成影视解说视频,仅需十秒即可完成,多平台分发,轻松日入1000+ 178
【免费V2ray安卓和电脑梯子】年度最佳免费v2ray梯子推荐_最新免费V2ray节点分享 117