gpt4 book ai didi

android - 如何为视频和 html 文件设置 MIME 类型?

转载 作者:行者123 更新时间:2023-11-29 16:07:02 26 4
gpt4 key购买 nike

我用过这个代码。

Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(uri, "text/html");
StartActivity(i);

but samsung device show the video player onaction using.
i want to show only install browser.

最佳答案

My problem solve by using createChooser() in Samsung device.

for browser.

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
this.startActivity(Intent.createChooser(intent, "Chose browser"));

for video.

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
intent.setType("video/mp4");
this.startActivity(Intent.createChooser(intent, "Chose browser"));

关于android - 如何为视频和 html 文件设置 MIME 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17372231/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com