java Android Noti

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Android Noti相关的知识,希望对你有一定的参考价值。

        Notifi_M = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
            Intent intent = new Intent(MyService.this, MainActivity.class);
            PendingIntent pendingIntent = PendingIntent.getActivity(MyService.this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

            Notifi = new Notification.Builder(getApplicationContext())
                    .setContentTitle("Content Title")
                    .setContentText("Content Text")
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setTicker("알람!!!")
                    .setContentIntent(pendingIntent)
                    .build();

            Notifi.defaults = Notification.DEFAULT_SOUND;
            Notifi.flags = Notification.FLAG_ONLY_ALERT_ONCE;
            Notifi.flags = Notification.FLAG_AUTO_CANCEL;
            Notifi_M.notify( 777 , Notifi);

以上是关于java Android Noti的主要内容,如果未能解决你的问题,请参考以下文章

在单个表中使用XMLAGG的后台处理空间问题

Android 截屏服务

Android 截屏服务

Android 截屏服务

Android 截屏服务

Android -- 每日一问:如何处理线程同步的问题?