level 11
月夜离散的梦
楼主
(>﹏<)我也不知道是什么,求教
AssetManager assetManager =getAssets();
String[]files =null;
try{
files =assetManager.list("");
for (int i=0;i<files.length;i++)
{
Toast.makeText(this,files[i],Toast.LENGTH_SHORT).show();
}
}catch(Exception e){
// Toast.makeText(this,e.toString(),Toast.LENGTH_LONG).show();
}
2015年09月26日 07点09分
1
AssetManager assetManager =getAssets();
String[]files =null;
try{
files =assetManager.list("");
for (int i=0;i<files.length;i++)
{
Toast.makeText(this,files[i],Toast.LENGTH_SHORT).show();
}
}catch(Exception e){
// Toast.makeText(this,e.toString(),Toast.LENGTH_LONG).show();
}