将文件添加到Assets文件夹。安卓系统

时间:2018-10-17 15:56:22

标签: android file android-studio directory android-assets

我正在使用Assets文件夹存储文件。并添加了文件

  

ten_ways

手动

到此文件夹。但是当我借助此代码显示此文件夹的文件列表时

AssetManager manager = getApplicationContext().getAssets();
        try {
            String[] files = manager.list("");
            Toast.makeText(getApplicationContext(),files[0],Toast.LENGTH_SHORT);
        } catch (IOException e) {
            e.printStackTrace();
        }

未显示任何内容。我知道这意味着该文件夹中没有任何内容,但是为什么呢?

这是目录的结构:

enter image description here

1 个答案:

答案 0 :(得分:2)

使用Toast时常见的错误。您忘了显示它:

Toast.makeText(getApplicationContext(),files[0],Toast.LENGTH_SHORT).show();