OpenHarmony开源社区
直播中

向日葵的花季

8年用户 1237经验值
擅长:电源/新能源
私信 关注
[问答]

请问鸿蒙怎么打开网页?要怎么操作?

Intentintent=newIntent(Intent.ACTION_VIEW,Uri.parse("https://www.baidu.com/"));
this.startActivity(intent);鸿蒙是怎么样的

回帖(1)

贾小龙

2022-6-10 09:56:14
开发者你好,可以通过这种方式实现。

try {
Intent intent = new Intent();
Operation operationCommonComponts = new Intent.OperationBuilder()
.withUri(Uri.parse(website)) // website是网站
.build();
intent.setOperation(operationCommonComponts);
startAbility(intent);
} catch (Exception exception) {
error("Unable to open website", exception, this);
}
举报

更多回帖

发帖
×
20
完善资料,
赚取积分