こんにちは、Web URL の暗号化と復号化をテストしており、Web ブラウザへの意図を開発しようとしています。
String decrypted = DecodeAES.decrypt(AESkey, encrypted);
decryptedValue.setText(decrypted);
ここで「decryptedValue」を取得し、実際に Uri.parse に配置したいのですが、「decryptedValue」には、webbrowser で開く Web サイトが含まれています。
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(browserIntent);
Uri.parse の使い方と何を使うのか教えてください。
前もって感謝します。