Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
202 views
in Technique[技术] by (71.8m points)

Simple alarm app for Android 10. How to turn on screen by service

I am trying to create a simple alarm app for Android 10.

I use Alarm Manager and start a foreground service with notification by pending intent. It is working fine, but by Android 10 is impossible to start an activity from background service.

I know how to wake up and turn screen on by activity but do not know how to do this by service and notification (the screen stays off).

Is there way to turn screen on programmatically?

My device is Huawei HRY-LX1T (Android 10).

if( Build.VERSION.SDK_INT >= 26) {
    NotificationChannel channel = new NotificationChannel( CHANNEL_ID, "Alarm", NotificationManager.IMPORTANCE_HIGH);
    ((NotificationManager) getSystemService( Context.NOTIFICATION_SERVICE)).createNotificationChannel(channel);
    Notification notification = new Notification.Builder(this, CHANNEL_ID)
            .setSmallIcon( R.drawable.ic_launcher_foreground )
            .setContentIntent( PendingIntent.getActivity( this, 0, new Intent( this, Main.class).addFlags( Intent.FLAG_ACTIVITY_NEW_TASK ), 0) )
            .setContentTitle( getString(R.string.alarm))
            .setContentText("Test").build();
    startForeground(1, notification);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...