Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android 允许您通过getAssets(). 但是,我没有看到任何方法来反省那里的内容,并获得资产的动态列表。
getAssets()
这不可能吗?如果没有,是否有备用位置来保存字体等内容,以便我可以在运行时拉出动态列表?
您可以使用AssetManager.list(String path)返回指定路径中所有文件的方法。
AssetManager.list(String path)