Android how to show notification on screen

前端 未结 5 2119
情歌与酒
情歌与酒 2020-12-05 23:06

I\'ve been working on push notifications and I am able to implement it and display it on status bar, the problem I am facing is that I want to display it even if the phone i

5条回答
  •  再見小時候
    2020-12-05 23:53

    Create Notification using NotificationCompat.Builder but make sure to put visibility to public like

    NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
            builder
            .setContentTitle("Title")
            .setContentText("content")
            .setSmallIcon(R.mipmap.ic_launcher)
            .setVisibility(NotificationCompat.VISIBILITY_PUBLIC);//to show content in lock screen
    

提交回复
热议问题