gpt4 book ai didi

android - 如何在 android 中使用 Uri.parse

转载 作者:行者123 更新时间:2023-12-04 12:52:08 25 4
gpt4 key购买 nike

嗨,我正在测试 Web url 的加密和解密,并试图开发 Web 浏览器的 Intent 。

String decrypted = DecodeAES.decrypt(AESkey, encrypted);
decryptedValue.setText(decrypted);

在这里我想检索“decryptedValue”并放置在 Uri.parse
实际上这里的“decryptedValue”包含一些要在浏览器中打开的网站。
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(browserIntent);

请告诉我如何使用 Uri.parse 以及使用什么。

提前致谢。

最佳答案

改变 -

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

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

关于android - 如何在 android 中使用 Uri.parse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18794311/

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