//创建前台服务方式/*** @description* @author* @time*/
class MyForegroundService : Service() {companion object {private var instance: MyForegroundService? = nullfun getInstance(): MyForegroundService? {return instance}}private val NOTIFICATION_ID = 1private val CHANNEL_ID = "ForegroundServiceChannel"override fun onCreate() {super.onCreate()instance = this}/*** 更新服务 通知栏信息*/fun update(){startForeground(NOTIFICATION_ID, createNotification())}override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {// 在此处执行服务的逻辑操作// 将服务设置为前台服务startForeground(NOTIFICATION_ID, createNotification())return START_STICKY}override fun onDestroy() {super.onDestroy()instance=null// 停止前台服务stopForeground(true)}override fun onBind(intent: Intent?): IBinder? {return null}private fun createNotification(): Notification {// 创建前台服务的通知,并为其创建一个通知渠道if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {val channel = NotificationChannel(CHANNEL_ID,"app名称",NotificationManager.IMPORTANCE_DEFAULT)val notificationManager = getSystemService(NotificationManager::class.java)notificationManager?.createNotificationChannel(channel)}//设置布局val contentView = RemoteViews(TTWMyApplication.CONTEXT.packageName, R.layout.layout_widget_two)var pendingIntent = PendingIntent.getActivity(this, 0,Intent(this, SplashActivityZs::class.java), PendingIntent.FLAG_UPDATE_CURRENT)contentView!!.setOnClickPendingIntent(R.id.ry_content_two, pendingIntent)if (TTWSourceConfig.getInstance().userBean != null) {contentView.setTextViewText(R.id.tv_amout,StringUtils.getAmoutSmallText("${TTWSourceConfig.getInstance().userBean.coin}≈${TTWSourceConfig.getInstance().userBean.coinRMB}元",16))}val builder = NotificationCompat.Builder(this, CHANNEL_ID).setSmallIcon(R.mipmap.icon_logo).setContent(contentView)
// .setContentTitle(title)
// .setContentText(text).setPriority(NotificationCompat.PRIORITY_HIGH)return builder.build()}
}
//创建 通知栏操作
class CustomNotificationManager(private val context: Context) {var channelId: String = "channelid"var notificationId: Int = 1private val notificationManager: NotificationManagerCompat =NotificationManagerCompat.from(context)fun createNotificationChannel(channelId: String, channelName: String, importance: Int) {if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {val channel = NotificationChannel(channelId, channelName, importance)notificationManager.createNotificationChannel(channel)}}fun showCustomNotification() {//创建通知渠道(Android 8.0及更高版本需要)createNotificationChannel(channelId,context.getString(R.string.app_name),NotificationManager.IMPORTANCE_DEFAULT)//设置布局val contentView = RemoteViews(context.packageName, R.layout.custom_notification_layout)// 点击意图 // setDeleteIntent 移除意图val pendingIntentOne =PendingIntent.getActivity(context, 0, Intent(context, RubbishCleanfActivity::class.java), PendingIntent.FLAG_UPDATE_CURRENT)contentView.setOnClickPendingIntent(R.id.tv_1, pendingIntentOne)val pendingIntentTwo =PendingIntent.getActivity(context, 0, Intent(context, PhoneSpeedActivity::class.java), PendingIntent.FLAG_UPDATE_CURRENT)contentView.setOnClickPendingIntent(R.id.tv_2, pendingIntentTwo)val pendingIntentThree =PendingIntent.getActivity(context, 0, Intent(context, BdcsFirstActivity::class.java), PendingIntent.FLAG_UPDATE_CURRENT)contentView.setOnClickPendingIntent(R.id.tv_3, pendingIntentThree)val pendingIntentFour =PendingIntent.getActivity(context, 0, Intent(context, BatteryPrefActivity::class.java), PendingIntent.FLAG_UPDATE_CURRENT)contentView.setOnClickPendingIntent(R.id.tv_4, pendingIntentFour)val builder = NotificationCompat.Builder(context, channelId).setSmallIcon(R.mipmap.icon_logo).setContent(contentView) // .setContentTitle(title) // .setContentText(text).setPriority(NotificationCompat.PRIORITY_HIGH)notificationManager.notify(notificationId++, builder.build())} }