我正在制作一个应用程序,我必须在列表视图中显示 sdcard 中的所有 mp3 文件。对此的任何帮助将不胜感激。
user1025050
问问题
3396 次
1 回答
0
这是一个基于 Android 文件资源管理器的非常好的示例。它显示您的 SD 卡中存在的所有文件。
检查这个, http://android-er.blogspot.in/2010/01/implement-simple-file-explorer-in.html
现在,如果您只想显示 mp3 文件,您只需使用文件名进行条件检查。
像这样替换这个例子的getDir(String dirPath)方法,
private void getDir(String dirPath)
{
myPath.setText("Location: " + dirPath);
item = new ArrayList<String>();
path = new ArrayList<String>();
File f = new File(dirPath);
File[] files = f.listFiles();
if(!dirPath.equals(root))
{
item.add(root);
path.add(root);
item.add("../");
path.add(f.getParent());
}
for(int i=0; i < files.length; i++)
{
File file = files[i];
path.add(file.getPath());
if(file.isDirectory())
item.add(file.getName() + "/");
else
{
String filename=file.getName();
String ext = filename.substring(filename.lastIndexOf('.')+1, filename.length());
if(ext.equals("JPG")||ext.equals("jpg"))
{
item.add(file.getName());
}
}
}
ArrayAdapter<String> fileList =
new ArrayAdapter<String>(this, R.layout.row, item);
setListAdapter(fileList);
}
现在您的资源管理器已准备就绪,它只显示 mp3 文件。
于 2012-04-04T11:14:01.173 回答