我的原始文件夹中有多个文本文件,我想根据列表视图上的所选项目一一显示它们

发布于 2025-01-04 21:31:00 字数 117 浏览 1 评论 0原文

我的原始文件夹中有多个文本文件,我想根据列表视图上的所选项目一一显示它们。

例如我选择了 《安卓教程》 显示的文本文件必须是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独岁月 2025-01-11 21:31:00

您应该查看资产文件夹。您可以列出资产文件夹中的文件并按文件名加载它们。 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() and AssetManager are your friends.

兮颜 2025-01-11 21:31:00

谢谢先生:D

  try {



        InputStream is = getAssets().open(selectedinlistview + ".txt");
        int size = is.available();


        byte[] buffer = new byte[size];
        is.read(buffer);
        is.close();


        String text = new String(buffer);


       // TextView tv = (TextView)findViewById(R.id.text);
        TextView helloTxt = (TextView)findViewById(R.id.tvDesc);
        helloTxt.setMovementMethod(new ScrollingMovementMethod());
        helloTxt.setText(text);

    } catch (IOException e) {

Thanks sir :D

  try {



        InputStream is = getAssets().open(selectedinlistview + ".txt");
        int size = is.available();


        byte[] buffer = new byte[size];
        is.read(buffer);
        is.close();


        String text = new String(buffer);


       // TextView tv = (TextView)findViewById(R.id.text);
        TextView helloTxt = (TextView)findViewById(R.id.tvDesc);
        helloTxt.setMovementMethod(new ScrollingMovementMethod());
        helloTxt.setText(text);

    } catch (IOException e) {
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文