您好 我需要将我的图像和声音保存在res文件夹结构内的一个单独的文件夹中。之后我需要读取并显示该文件夹中的图像到我的应用程序 请回复
答案 0 :(得分:1)
是,您可以在 res 文件夹(res / raw)中创建一个名为 raw 的单独文件夹,保持你的绘画和声音在该文件夹中。
答案 1 :(得分:0)
您可以将图像保存为res / drawable,将声音文件保存为res / raw。
如果您真的想为声音和图像文件创建单独的文件夹,可以在SD卡上创建它。请参阅以下示例代码:
File fileList= new File("/sdcard/MyFiles/");
//Store the file names within MyFiles folder to pathList[]
pathList = fileList.list();
//Create the URI path of your files here
StringBuilder sb = new StringBuilder();
sb.append("/sdcard/MyFiles/"+pathList[index1]);
pathList[index1]=sb.toString();
//Here is how you can play your sound files
MediaPlayer mp = new MediaPlayer();
mp.setDataSource(PATH_TO_FILE);
mp.prepare();
mp.start();