需要帮助使用android将sdcard的mp3文件显示到列表视图中

时间:2011-04-25 09:50:07

标签: android listview mp3 sd-card

我需要将已下载的mp3文件显示到Listview中,并且还希望像下载任何mp3文件一样进行验证,然后如果该mp3存在于SD卡中,则用户应该获得“已经下载”的消息。

任何人都可以告诉我如何做到这一点吗?

1 个答案:

答案 0 :(得分:2)

File bookFile = new File("/sdcard/"+filename);
        if(bookFile.exists())
        {

            System.out.println("Downloaded");

        }
        else
        {
                     System.out.println("want to Download");
        }