Android lock screen notification is not able to open Browser on double tapping
问题 My app sends out a notification, which opens the Browser with the given url on tapping. Actually, the wrapped intent is sent to a BroadcastReceiver, and this broadcast receiver starts Browser. Intent browserIntent = new Intent(Intent.ACTION_VIEW, intent.getData()); browserIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(showTaskIntent); It works fine with the notification on pull-down notification bar, but not with the lock screen notification. It's not able to open