'songchoice'
ฉันมีสตริง ฉันต้องการให้มันกลายเป็น 'Uri' เพื่อให้ฉันสามารถใช้กับMediaPlayer.create(context, Uri)
ฉันจะแปลง songchoice เป็น 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
Uri.parse(STRING);
ดูเอกสาร:
สตริง: URI ที่เข้ารหัสตาม RFC 2396
URL จะต้องได้รับการบัญญัติขึ้นก่อนใช้เช่นนี้:
Uri.parse(Uri.decode(STRING));