标签: android
如何获取android资源文件夹中文件夹内的所有文件名? 请帮忙。 提前谢谢。
答案 0 :(得分:3)
获取AssetManager(使用上下文或活动中的getAssets()),然后从中调用list("subdir")(将 subdir 替换为内部文件夹的名称你的资产文件夹)。
AssetManager
getAssets()
list("subdir")
这将为您提供String[],其中包含您寻找的所有文件名。
String[]