在Android中将字符串转换为Uri
我有一个字符串'songchoice'
。我希望它成为“ Uri”,这样我就可以与MediaPlayer.create(context, Uri)
如何将Songchoice转换为Uri?
回答:
Uri myUri = Uri.parse("http://www.google.com");
这是文档http://developer.android.com/reference/android/net/Uri.html#parse%28java.lang.String%29
以上是 在Android中将字符串转换为Uri 的全部内容, 来源链接: utcz.com/qa/399383.html