浏览器无法打开并定向到google.com
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.google.com/"));
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
NotificationCompat.Builder notification =
new NotificationCompat.Builder(this, "CHANNEL_1")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(Integer.toString(i))
.setContentText("Much longer text that cannot beast fit one line...")
.setContentIntent(pendingIntent)