Giter VIP home page Giter VIP logo

upyaselectfileorfolder's Introduction

自述

UpyaSelectFileOrFolder是一个用于挑选文件或文件夹,获取路径信息的库,可单选、多选、混选。😍

截图

单选文件 单选文件夹 单选文件和文件夹
多选文件 多选文件夹 多选文件和文件夹

依赖

Gradle:

  • 步骤1:将以下代码添加到工程的build.gradle中:
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  • 步骤2:添加依赖关系
android{
	...
	// 需启用Java8
	compileOptions {
		targetCompatibility JavaVersion.VERSION_1_8
		sourceCompatibility JavaVersion.VERSION_1_8
	}
}

dependencies {
	...
	// 将下方的 ${latestVersion} 替换为当前最新的版本,最新版本参见下文
	implementation 'com.github.TYUpya:UpyaSelectFileOrFolder:${latestVersion}'

	// PS:如果集成以上依赖后项目运行报错,请再添加以下赖
	implementation 'androidx.recyclerview:recyclerview:1.1.0'
}

Maven:

  • 步骤1:
<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>
  • 步骤2:
<!-- 将下方的 ${latestVersion} 替换为当前最新的版本,最新版本参见下文 -->
<dependency>
	<groupId>com.github.TYUpya</groupId>
	<artifactId>UpyaSelectFileOrFolder</artifactId>
	<version>${latestVersion}</version>
</dependency>

<!-- PS:如果集成以上依赖后项目运行报错,请再添加以下依赖 -->
<dependency>
	<groupId>androidx.recyclerview</groupId>
	<artifactId>recyclerview</artifactId>
	<version>1.1.0</version>
	<scope>runtime</scope>
</dependency>

最新版本

latestVersion

所需权限

序号 权限 说明
1 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 读取储存的文件权限

使用介绍

  • 调用示例之 单选文件
public void onClick01(View view) {
	new SelectFileOrFolderDialog(this, true, SelectFileOrFolderDialog.CHOICEMODE_ONLY_FILE,
		new SelectFileOrFolderDialog.OnSelectFileOrFolderListener() {
			@Override
			public void onSelectFileOrFolder(List<File> selectedFileList) {
				mainText.setText("选择的文件:" + selectedFileList.get(0).getAbsolutePath());
			}
		}).show();
}
  • 调用示例之 多选文件
public void onClick02(View view) {
	new SelectFileOrFolderDialog(this, false, SelectFileOrFolderDialog.CHOICEMODE_ONLY_FILE,
		new SelectFileOrFolderDialog.OnSelectFileOrFolderListener() {
			@Override
			public void onSelectFileOrFolder(List<File> selectedFileList) {
				mainText.setText("选择的文件:\n");
				for (File file : selectedFileList) {
					mainText.append(file.getAbsolutePath());
					mainText.append("\n");
				}
			}
		}).show();
}
  • 调用示例之 单选文件夹
public void onClick03(View view) {
	new SelectFileOrFolderDialog(this, true, SelectFileOrFolderDialog.CHOICEMODE_ONLY_FOLDER,
		new SelectFileOrFolderDialog.OnSelectFileOrFolderListener() {
			@Override
			public void onSelectFileOrFolder(List<File> selectedFileList) {
				mainText.setText("选择的文件:" + selectedFileList.get(0).getAbsolutePath());
			}
		}).show();
}
  • 调用示例之 多选文件夹
public void onClick04(View view) {
	new SelectFileOrFolderDialog(this, false, SelectFileOrFolderDialog.CHOICEMODE_ONLY_FOLDER,
		new SelectFileOrFolderDialog.OnSelectFileOrFolderListener() {
			@Override
			public void onSelectFileOrFolder(List<File> selectedFileList) {
				mainText.setText("选择的文件:\n");
				for (File file : selectedFileList) {
					mainText.append(file.getAbsolutePath());
					mainText.append("\n");
				}
			}
		}).show();
}
  • 调用示例之 单选文件和文件夹
public void onClick05(View view) {
	new SelectFileOrFolderDialog(this, true, SelectFileOrFolderDialog.CHOICEMODE_UNLIMITED,
		new SelectFileOrFolderDialog.OnSelectFileOrFolderListener() {
			@Override
			public void onSelectFileOrFolder(List<File> selectedFileList) {
				mainText.setText("选择的文件:" + selectedFileList.get(0).getAbsolutePath());
			}
		}).show();
}
  • 调用示例之 多选文件和文件夹
public void onClick06(View view) {
	new SelectFileOrFolderDialog(this, false, SelectFileOrFolderDialog.CHOICEMODE_UNLIMITED,
		new SelectFileOrFolderDialog.OnSelectFileOrFolderListener() {
			@Override
			public void onSelectFileOrFolder(List<File> selectedFileList) {
				mainText.setText("选择的文件:\n");
				for (File file : selectedFileList) {
					mainText.append(file.getAbsolutePath());
					mainText.append("\n");
				}
			}
		}).show();
}

混淆规则

-dontwarn vip.upya.lib.sfof.**
-keep class vip.upya.lib.sfof.**{*;}

感谢

😂나 자신🤣

License

Copyright 2020 TYUpya

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.