从SMS打开URL

时间:2011-09-12 16:08:00

标签: android url text sms

我有一个应用程序可以侦听传入的消息。当我收到特定消息时,我提取文本并将其保存到文件中。该消息由文本和URL组成。如何从文本文件中打开此URL?

2 个答案:

答案 0 :(得分:0)

对Action.VIEW使用intent并使用此意图传递url。

答案 1 :(得分:0)

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);

这将打开浏览器(我相信用户选择哪一个)并转到网址