0
for(int i = 0; i < files.length; i++)
{
    File file = files[i];
    path.add(file.getPath());
    if(file.isDirectory())
        item.add(file.getName() + R.drawable.folder); /* it doesn't work, because it shows numbers instead of folder icon */
    else
        item.add(file.getName());
}

它不起作用;它显示数字而不是文件夹图标。

4

1 回答 1

0

有几个关于制作文件管理器和列表的 Android 教程:Android 编程:从哪里开始创建一个简单的文件浏览器?

该链接 - 在 StackOverFlow 上 - 具有其他对您正在尝试的工作有益的链接。此外,您可以使用 OpenIntents 开源文件管理器中的源代码:

OpenIntents:http ://www.openintents.org/en/download

源代码: http ://code.google.com/p/openintents/downloads/detail?name=FileManager-source-1.0.0.zip&can=1&q=

要查看 Open Intents 文件管理器的外观,您可以在此处查看:https ://play.google.com/store/apps/details?id=org.openintents.filemanager

让我知道这是否有帮助!

于 2012-04-06T21:28:51.523 回答