本文介绍了在Android中将字符串转换为Uri的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个字符串,'songchoice'
.我希望它成为"Uri",因此可以与 MediaPlayer.create(context,Uri)
I have a string, 'songchoice'
. I want it to become a 'Uri' so I can use with MediaPlayer.create(context, Uri)
如何将Songchoice转换为Uri?
How can I convert songchoice to the 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!