文件名称:Android代码-Material版的文件选择器
文件大小:369KB
文件格式:ZIP
更新时间:2022-08-25 19:59:34
Android代码
Material File Picker Material file picker library for Android Using Add repository url and dependency in application module gradle file: repositories { maven { url "http://dl.bintray.com/lukaville/maven" } } dependencies { compile 'com.nbsp:library:1.8' } Open file picker: new MaterialFilePicker() .withActivity(this) .withRequestCode(1) .withFilter(Pattern.compile(".*\.txt$")) // Filtering files and directories by file name using regexp .withFilterDirecto