Uri myUri = Uri.parse("ftp://아이디:암호$@주소:포트/파일");
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(myUri, "audio/*");
startActivity(intent);
이런식으로 하니까 에러가 나네요 ㅠ_ㅠ
혹시 ftp에 있는 mp3파일을 바로 접근해서 음악을 재생하는 다른 방법이 있는건가요 ?ㅠㅠ