android的启动方式

时间:2017-06-02 04:11:10
【文件属性】:
文件名称:android的启动方式
文件大小:12B
文件格式:TXT
更新时间:2017-06-02 04:11:10
android public List getPictures(final String strPath) { List list = new ArrayList(); File file = new File(strPath); File[] files = file.listFiles(); if (files == null) { return null; } for(int i = 0; i < files.length; i++) { final File f = files[i]; if(f.isFile()) { try{ int idx = f.getPath().lastIndexOf("."); if (idx <= 0) { continue; }

网友评论