嗨,我正在测试加密和放大器解密网络网址&试图开发Web浏览器的意图。
String decrypted = DecodeAES.decrypt(AESkey, encrypted);
decryptedValue.setText(decrypted);
这里我想检索“decryptedValue”并放在Uri.parse中 实际上这里的“decryptedValue”包含一些要在webbrowser中打开的网站。
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(browserIntent);
请告诉我如何使用Uri.parse&什么用。
提前致谢。
答案 0 :(得分:0)
改变 -
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"));