通过href

时间:2017-12-06 08:36:12

标签: javascript google-chrome flash android-intent intentfilter

我有一个需要播放flash的网站,不幸的是,android chrome不支持播放flash。作为解决方案,我需要打开另一个浏览器的URL,这个浏览器是带有内置flash播放器的dolphin浏览器。现在的问题是我如何启动海豚浏览器并传递网址?我曾尝试使用Android Intents,但仍然没有运气。我也有这行代码:

<a href="intent://my_url_to_open#Intent;scheme=http;package=mobi.mgeek.TunnyBrowser;action:ACTION_VIEW;category=android.intent.category.BROWSABLE;end"

我错过了什么?或者我做错了吗?

1 个答案:

答案 0 :(得分:0)

使用此代码:

String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

请注意,当您启动此意图时,应该有一个选择浏览器的选项。如果您已设置默认浏览器,则必须删除该默认浏览器。