通过通知打开浏览器不起作用

时间:2019-06-20 09:36:32

标签: android android-intent

浏览器无法打开并定向到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)

0 个答案:

没有答案