如何使用解析推送通知打开URL?

时间:2015-09-13 08:35:01

标签: android android-studio parse-platform push-notification android-notifications

我在我的应用中实现了解析推送通知。但我只能发送文本通知,当用户点击通知时,它会转到应用。 现在我想在用户点击通知时打开一个网址。我该怎么办?

1 个答案:

答案 0 :(得分:1)

你可以从推送和“抛出”意图解析网址:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(/**Your parsed url**/));
startActivity(browserIntent);