我有一个字符串'songchoice'。我希望它成为“ Uri”,这样我就可以与MediaPlayer.create(context, Uri)
'songchoice'
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