我的原始文件夹中有多个文本文件,我想根据列表视图上的所选项目一一显示它们
我的原始文件夹中有多个文本文件,我想根据列表视图上的所选项目一一显示它们。
例如我选择了 《安卓教程》 显示的文本文件必须是 androidTutorial.txt
但是如何呢?帮助:D
i have multiple text files in my raw folder, i want to show them 1 by 1 according to the selected item on listview.
for example i've seleceted
"androidTutorial"
the text file would be shown must be androidTutorial.txt
BUT HOW? HELP :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看资产文件夹。您可以列出资产文件夹中的文件并按文件名加载它们。
Context.getAssets()
和AssetManager
是你的朋友。You should have a look at the assets folder. You can list the files in the assets folder and load them by file name.
Context.getAssets()
andAssetManager
are your friends.谢谢先生:D
Thanks sir :D