Compare commits
No commits in common. "master" and "newfile" have entirely different histories.
|
|
@ -1,3 +0,0 @@
|
|||
[submodule "docs-src/themes/hugo-material-docs"]
|
||||
path = docs-src/themes/hugo-material-docs
|
||||
url = https://github.com/digitalcraftsman/hugo-material-docs.git
|
||||
14
CHANGELOG.md
|
|
@ -1,17 +1,5 @@
|
|||
# Change Log
|
||||
|
||||
## [3.0.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/3.0.0) (2016-07-03)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.3...3.0.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Select one file with a single click [\#92](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/92) ([rastikw](https://github.com/rastikw))
|
||||
- Add ability to enter a new filename [\#83](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/83) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Add ability to input filename [\#82](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/82)
|
||||
|
||||
## [2.5.3](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.3) (2016-06-09)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.2...2.5.3)
|
||||
|
||||
|
|
@ -256,4 +244,4 @@
|
|||
## [v0.9](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.9) (2014-03-31)
|
||||
|
||||
|
||||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
||||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
||||
|
|
@ -5,7 +5,6 @@
|
|||
<a href="https://travis-ci.org/spacecowboy/NoNonsense-FilePicker">
|
||||
<img src="https://travis-ci.org/spacecowboy/NoNonsense-FilePicker.svg?branch=master">
|
||||
</a>
|
||||
<a href='https://dependencyci.com/github/spacecowboy/NoNonsense-FilePicker'><img src='https://dependencyci.com/github/spacecowboy/NoNonsense-FilePicker/badge' alt='Dependency Status'/></a>
|
||||
<a href='https://bintray.com/spacecowboy/maven/com.nononsenseapps%3Afilepicker/_latestVersion'><img src='https://api.bintray.com/packages/spacecowboy/maven/com.nononsenseapps%3Afilepicker/images/download.svg'></a>
|
||||
</p>
|
||||
|
||||
|
|
@ -69,7 +68,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.nononsenseapps:filepicker:3.0.0'
|
||||
compile 'com.nononsenseapps:filepicker:2.5.3'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
@ -113,9 +112,6 @@ you like..
|
|||
<item name="colorPrimaryDark">@color/primary_dark</item>
|
||||
<item name="colorAccent">@color/accent</item>
|
||||
|
||||
<!-- Setting a divider is entirely optional -->
|
||||
<item name="nnf_list_item_divider">?android:attr/listDivider</item>
|
||||
|
||||
<!-- Need to set this also to style create folder dialog -->
|
||||
<item name="alertDialogTheme">@style/FilePickerAlertDialogTheme</item>
|
||||
|
||||
|
|
@ -196,7 +192,7 @@ you can skip the second method.
|
|||
|
||||
## Want to customize further?
|
||||
|
||||
See some examples in the [Wiki](http://spacecowboy.github.io/NoNonsense-FilePicker/)
|
||||
See some examples in the [Wiki](https://github.com/spacecowboy/NoNonsense-FilePicker/wiki)
|
||||
|
||||
See the sample project for examples on dark and light themes, and
|
||||
implementations using Dropbox and FTP.
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ buildscript {
|
|||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:2.1.0'
|
||||
classpath 'com.novoda:bintray-release:0.3.4'
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
public
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
.PHONY: help build server server-with-drafts clean all hugo
|
||||
|
||||
examples_src := $(wildcard content/example/*.md)
|
||||
examples := $(patsubst content/example/%.md,../docs/example/%/index.html,$(examples_src))
|
||||
|
||||
help: ## Print this help text
|
||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||
|
||||
server: ## Build and run a local web server
|
||||
hugo server -d ../docs
|
||||
|
||||
server-with-drafts: ## Run hugo server and include drafts
|
||||
hugo server -D -d ../docs
|
||||
|
||||
clean: ## Clean /docs
|
||||
rm -rf ../docs
|
||||
|
||||
hugo: $(examples) ## Build the site and place output in ../docs
|
||||
all: $(examples)
|
||||
|
||||
print: $(examples)
|
||||
echo $?
|
||||
|
||||
../docs/index.html: content/index.md
|
||||
hugo -d ../docs
|
||||
|
||||
../docs/%/index.html: content/%/index.md
|
||||
hugo -d ../docs
|
||||
|
||||
../docs/example/%/index.html: content/example/%.md
|
||||
hugo -d ../docs
|
||||
|
||||
# Catch all is static content
|
||||
../docs/%: static/%
|
||||
hugo -d ../docs
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
+++
|
||||
[menu.main]
|
||||
parent = "Examples"
|
||||
url = "example/"
|
||||
identifier = ""
|
||||
weight = 99
|
||||
+++
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
baseurl = "http://spacecowboy.github.io/NoNonsense-FilePicker/"
|
||||
languageCode = "en-us"
|
||||
title = "NoNonsense FilePicker"
|
||||
theme = "hugo-material-docs"
|
||||
metadataformat = "toml"
|
||||
canonifyurls = true
|
||||
PygmentsCodeFences = true
|
||||
PygmentsStyle = "friendly"
|
||||
PygmentsOptions = ""
|
||||
#pygmentsuseclasses = true # Will use css file in /static/
|
||||
# Enable Google Analytics by entering your tracking id
|
||||
#googleAnalytics = ""
|
||||
|
||||
[params]
|
||||
# General information
|
||||
author = "SpaceCowboy"
|
||||
description = "An extensible and flexible file-picker for Android."
|
||||
copyright = "Released under the Mozilla Public License 2.0"
|
||||
|
||||
# Repository
|
||||
provider = "GitHub"
|
||||
repo_url = "https://github.com/spacecowboy/NoNonsense-FilePicker"
|
||||
|
||||
version = ""
|
||||
logo = ""
|
||||
favicon = ""
|
||||
|
||||
permalink = "#"
|
||||
|
||||
# Custom assets
|
||||
custom_css = []
|
||||
custom_js = []
|
||||
|
||||
# Syntax highlighting theme
|
||||
highlight_css = ""
|
||||
|
||||
[params.palette]
|
||||
primary = "red"
|
||||
accent = "light green"
|
||||
|
||||
[params.font]
|
||||
text = "Roboto"
|
||||
code = "Roboto Mono"
|
||||
|
||||
|
||||
[social]
|
||||
twitter = ""
|
||||
github = "spacecowboy"
|
||||
|
||||
|
||||
[[menu.main]]
|
||||
name = "Readme"
|
||||
url = "readme/"
|
||||
weight = 0
|
||||
|
||||
[[menu.main]]
|
||||
name = "Changelog"
|
||||
url = "changelog/"
|
||||
weight = 10
|
||||
|
||||
[[menu.main]]
|
||||
name = "License"
|
||||
url = "license/"
|
||||
weight = 20
|
||||
|
||||
[[menu.main]]
|
||||
name = "Examples"
|
||||
weight = 30
|
||||
|
||||
[blackfriday]
|
||||
smartypants = true
|
||||
fractions = true
|
||||
smartDashes = true
|
||||
latexDashes = true
|
||||
plainIDAnchors = true
|
||||
|
|
@ -1,263 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:06:45+02:00"
|
||||
title = "ChangeLog"
|
||||
|
||||
+++
|
||||
|
||||
## [3.0.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/3.0.0) (2016-07-03)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.3...3.0.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Select one file with a single click [\#92](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/92) ([rastikw](https://github.com/rastikw))
|
||||
- Add ability to enter a new filename [\#83](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/83) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Add ability to input filename [\#82](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/82)
|
||||
|
||||
## [2.5.3](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.3) (2016-06-09)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.2...2.5.3)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Add paths to permission and refresh methods [\#85](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/85)
|
||||
- Add FastScroller sample implementation [\#89](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/89) ([spacecowboy](https://github.com/spacecowboy))
|
||||
- Add a getItem method to FileItemAdapter [\#88](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/88) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- Crash while creating folder in dropbox sample [\#76](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/76)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Fast Scroll [\#87](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/87)
|
||||
|
||||
## [2.5.2](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.2) (2016-02-24)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.1...2.5.2)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Dropbox should show a progress bar when loading [\#74](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/74)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- Dropbox sample can crash due to Inconsistent state in RecyclerView [\#75](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/75)
|
||||
- Dropbox sample crash if multiple press on folder [\#73](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/73)
|
||||
- probebly underscore missing [\#63](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/63)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Update README.md [\#68](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/68) ([callmepeanut](https://github.com/callmepeanut))
|
||||
|
||||
## [2.5.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.1) (2016-01-13)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.0...2.5.1)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Change license to MPL [\#66](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/66)
|
||||
|
||||
## [2.5.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.0) (2015-11-08)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.2...2.5.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Add a separator line above OK/Cancel buttons [\#60](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/60)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Hide hidden files in SD card picker by default [\#58](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/58) ([dvrajan](https://github.com/dvrajan))
|
||||
|
||||
## [v2.4.2](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.2) (2015-09-30)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.1...v2.4.2)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- lower minSdk [\#54](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/54)
|
||||
- Spacing of filename items [\#52](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/52)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Lowered minSdk to API 9 [\#55](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/55) ([marbat87](https://github.com/marbat87))
|
||||
- Add Video Thumbnail preview and set default theme to light [\#53](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/53) ([alishari](https://github.com/alishari))
|
||||
|
||||
## [v2.4.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.1) (2015-09-14)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.0...v2.4.1)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Update to latest build tools and support library 23.0.1 [\#51](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/51) ([alishari](https://github.com/alishari))
|
||||
|
||||
## [v2.4.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.0) (2015-08-25)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.1...v2.4.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Only allow selecting single files \(when EXTRA\_ALLOW\_MULTIPLE is set to false\) [\#48](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Make click events overridable [\#49](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/49) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
## [v2.3.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.1) (2015-08-20)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.0...v2.3.1)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- FilePicker cannot be used with non-touchscreen devices [\#44](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/44)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Make list focusable. [\#45](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/45) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
## [v2.3.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.0) (2015-08-18)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.3...v2.3.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Make sure to handle Android M's new permission requests [\#24](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/24)
|
||||
|
||||
## [v2.2.3](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.3) (2015-08-04)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.2...v2.2.3)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Enhancement: Allow adding more arguments to FilePickerFragment [\#40](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/40)
|
||||
- Do not override existing arguments [\#41](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/41) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Update travis config to run on faster containers [\#42](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/42) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
## [v2.2.2](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.2) (2015-08-03)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.1...v2.2.2)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Dropbox Sync API is deprecated [\#35](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/35)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Ensure toasts don't get queued up [\#39](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/39) ([hcoosthuizen](https://github.com/hcoosthuizen))
|
||||
|
||||
## [v2.2.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.1) (2015-07-17)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2...v2.2.1)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- Strange error [\#34](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/34)
|
||||
|
||||
## [v2.2](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2) (2015-07-13)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.1...v2.2)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Allow fragment to be used with default action bar [\#32](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/32)
|
||||
- Allow setting of toolbar text colour [\#31](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/31)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- Licence [\#29](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/29)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Specifying GPL3 or later [\#30](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/30) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
## [v2.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.1) (2015-05-30)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.5...v2.1)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Make filepicker depend only on EXTRA\_ALLOW\_CREATE\_DIR [\#25](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/25)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- Build fails [\#21](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/21)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Mention that start-path is configurable [\#20](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/20) ([spacecowboy](https://github.com/spacecowboy))
|
||||
|
||||
## [v2.0.5](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.5) (2015-05-01)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.4...v2.0.5)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Ic\_launcher conflict with app one [\#16](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/16) ([NitroG42](https://github.com/NitroG42))
|
||||
|
||||
## [v2.0.4](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.4) (2015-04-29)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.3...v2.0.4)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Show miniatures for images [\#10](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/10)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- Rotation doesn't work [\#15](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/15)
|
||||
|
||||
## [v2.0.3](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.3) (2015-04-28)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.2...v2.0.3)
|
||||
|
||||
## [v2.0.2](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.2) (2015-04-28)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.0...v2.0.2)
|
||||
|
||||
## [v2.0.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.0) (2015-04-27)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.2.0...v2.0.0)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- crash InBackground thread [\#13](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/13)
|
||||
- Crash on root folders [\#12](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/12)
|
||||
|
||||
## [v1.2.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.2.0) (2015-04-27)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.3...v1.2.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Verify Proguard [\#8](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/8)
|
||||
- Upload the Dropbox sample [\#5](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/5)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Add a Gitter chat badge to README.org [\#11](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/11) ([gitter-badger](https://github.com/gitter-badger))
|
||||
- NPE on empty dir [\#6](https://github.com/spacecowboy/NoNonsense-FilePicker/pull/6) ([arkty](https://github.com/arkty))
|
||||
|
||||
## [v1.1.3](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.3) (2014-04-02)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.2...v1.1.3)
|
||||
|
||||
**Fixed bugs:**
|
||||
|
||||
- FilePicker: Handle case if startPath does not exist [\#4](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/4)
|
||||
|
||||
## [v1.1.2](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.2) (2014-04-02)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.1...v1.1.2)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Upload to Maven Central [\#3](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/3)
|
||||
|
||||
## [v1.1.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.1) (2014-04-02)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1...v1.1.1)
|
||||
|
||||
## [v1.1](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1) (2014-04-01)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.0...v1.1)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
- Add only files option [\#2](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/2)
|
||||
- Make create directory toggleable [\#1](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/1)
|
||||
|
||||
## [v1.0](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.0) (2014-04-01)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.99...v1.0)
|
||||
|
||||
## [v0.99](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.99) (2014-03-31)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.91...v0.99)
|
||||
|
||||
## [v0.91](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.91) (2014-03-31)
|
||||
[Full Changelog](https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.9...v0.91)
|
||||
|
||||
## [v0.9](https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.9) (2014-03-31)
|
||||
|
||||
|
||||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
||||
|
|
@ -1,177 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:21:28+02:00"
|
||||
title = "Custom item layout"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
identifier = "custom_item_layout"
|
||||
url = "example/custom_item_layout/"
|
||||
parent = "Examples"
|
||||
weight = 20
|
||||
|
||||
+++
|
||||
|
||||
Say you want to browse some files which have really long names. By default, filenames will be cut if they exceed one line in width like `ThisIsAReallyLongFi...`. What if we really wanted it show like in this image?
|
||||
|
||||

|
||||
|
||||
The behavior of the text is defined in the listitem layouts:
|
||||
[nnf_filepicker_listitem_checkable](https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_checkable.xml)
|
||||
and
|
||||
[nnf_filepicker_listitem_dir](https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_dir.xml).
|
||||
|
||||
There are two kinds of layouts, one with a checkbox to allow selection, and one without a checkbox. The second one is also used for the special header item `..` though you could of course have a special layout for that if you wanted.
|
||||
|
||||
### Layouts
|
||||
|
||||
Let's create some new layouts which will support longer filenames as follows:
|
||||
|
||||
**longer_listitem_checkable.xml**
|
||||
|
||||
```xml
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?android:selectableItemBackground"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:orientation="horizontal">
|
||||
|
||||
|
||||
<!--suppress AndroidDomInspection -->
|
||||
<ImageView
|
||||
android:id="@+id/item_icon"
|
||||
android:layout_width="?android:listPreferredItemHeight"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="fitCenter"
|
||||
android:src="@drawable/nnf_ic_file_folder"
|
||||
android:tint="?attr/colorAccent"
|
||||
android:visibility="visible"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/text1"
|
||||
style="?android:textAppearanceLarge"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="4"
|
||||
android:padding="8dp"/>
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/checkbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingEnd="8dp"
|
||||
android:paddingRight="8dp"
|
||||
tools:ignore="RtlSymmetry" />
|
||||
|
||||
</LinearLayout>
|
||||
```
|
||||
|
||||
**longer_listitem_dir.xml**
|
||||
|
||||
```xml
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?android:selectableItemBackground"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:orientation="horizontal"
|
||||
>
|
||||
|
||||
<!--suppress AndroidDomInspection -->
|
||||
<ImageView
|
||||
android:id="@+id/item_icon"
|
||||
android:layout_width="?android:listPreferredItemHeight"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="center"
|
||||
android:src="@drawable/nnf_ic_file_folder"
|
||||
android:tint="?attr/colorAccent"
|
||||
android:visibility="visible"
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/text1"
|
||||
style="?android:textAppearanceLarge"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="4"
|
||||
android:padding="8dp"/>
|
||||
</LinearLayout>
|
||||
```
|
||||
|
||||
Note that I defined the TextViews to have a maximum of 4 lines (actual number is up to you), and a minimum height of `android:listPreferredItemHeight` (this I recommend, otherwise it looks wonky and off-center). And just be clear, the *ids* of these fields must be `@+id/item_icon`, `@android:id/text1`, and `@+id/checkbox`, or the code WILL crash on you.
|
||||
|
||||
### Code
|
||||
|
||||
To use the new layouts, you need to override the `onCreateViewHolder` method in
|
||||
[AbstractFilePickerFragment](https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/java/com/nononsenseapps/filepicker/AbstractFilePickerFragment.java).
|
||||
|
||||
Since this example will be browsing the SD-card, I will extend from the built-in FilePickerFragment.
|
||||
|
||||
```java
|
||||
public class CustomLayoutFilePickerFragment extends FilePickerFragment {
|
||||
/**
|
||||
* @param parent Containing view
|
||||
* @param viewType which the ViewHolder will contain. Will be one of:
|
||||
* [VIEWTYPE_HEADER, VIEWTYPE_CHECKABLE, VIEWTYPE_DIR]. It is OK, and even expected, to use the same
|
||||
* layout for VIEWTYPE_HEADER and VIEWTYPE_DIR.
|
||||
* @return a view holder for a file or directory (the difference is presence of checkbox).
|
||||
*/
|
||||
@Override
|
||||
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
||||
View v;
|
||||
switch (viewType) {
|
||||
case LogicHandler.VIEWTYPE_HEADER:
|
||||
v = LayoutInflater.from(getActivity()).inflate(R.layout.longer_listitem_dir,
|
||||
parent, false);
|
||||
return new HeaderViewHolder(v);
|
||||
case LogicHandler.VIEWTYPE_CHECKABLE:
|
||||
v = LayoutInflater.from(getActivity()).inflate(R.layout.longer_listitem_checkable,
|
||||
parent, false);
|
||||
return new CheckableViewHolder(v);
|
||||
case LogicHandler.VIEWTYPE_DIR:
|
||||
default:
|
||||
v = LayoutInflater.from(getActivity()).inflate(R.layout.longer_listitem_dir,
|
||||
parent, false);
|
||||
return new DirViewHolder(v);
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
And as always, to use your custom fragment you need a custom activity which loads it for you:
|
||||
|
||||
```java
|
||||
public class CustomLayoutPickerActivity extends AbstractFilePickerActivity {
|
||||
|
||||
public CustomLayoutPickerActivity() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected AbstractFilePickerFragment<File> getFragment(
|
||||
final String startPath, final int mode, final boolean allowMultiple,
|
||||
final boolean allowCreateDir) {
|
||||
// Load our custom fragment here
|
||||
AbstractFilePickerFragment<File> fragment = new CustomLayoutFilePickerFragment();
|
||||
// startPath is allowed to be null. In that case, default folder should be SD-card and not "/"
|
||||
fragment.setArgs(startPath != null ? startPath : Environment.getExternalStorageDirectory().getPath(),
|
||||
mode, allowMultiple, allowCreateDir);
|
||||
return fragment;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:32:07+02:00"
|
||||
title = "Filter based on file extension"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
identifier = "filter_file_extension"
|
||||
url = "example/filter_file_extension/"
|
||||
parent = "Examples"
|
||||
weight = 10
|
||||
|
||||
+++
|
||||
|
||||
|
||||
By default, the SD-card picker will display all files in alphabetical order. But let's say that your app can only handle a specific type of file, like `.txt`-files. Here's a minimal example which will only display such files.
|
||||
|
||||
First, a convenience method to get the extension of files:
|
||||
|
||||
```java
|
||||
// File extension to filter on, including the initial dot.
|
||||
private static final String EXTENSION = ".txt";
|
||||
|
||||
/**
|
||||
*
|
||||
* @param file
|
||||
* @return The file extension. If file has no extension, it returns null.
|
||||
*/
|
||||
private String getExtension(@NonNull File file) {
|
||||
String path = file.getPath();
|
||||
int i = path.lastIndexOf(".");
|
||||
if (i < 0) {
|
||||
return null;
|
||||
} else {
|
||||
return path.substring(i);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The decision to display files or not is done with the `isItemVisible` method. Just add a check for the file-extension:
|
||||
|
||||
```java
|
||||
@Override
|
||||
protected boolean isItemVisible(final File file) {
|
||||
// simplified behavior (see below full code)
|
||||
// return isDir(file) || (mode == MODE_FILE || mode == MODE_FILE_AND_DIR);
|
||||
if (!isDir(file) && (mode == MODE_FILE || mode == MODE_FILE_AND_DIR)) {
|
||||
String ext = getExtension(file);
|
||||
return ext != null && EXTENSION.equalsIgnoreCase(ext);
|
||||
}
|
||||
return isDir(file);
|
||||
}
|
||||
```
|
||||
|
||||
### Before and After
|
||||
<img src="/screenshots/filter_before.png" width="30%" alt="Before"/>
|
||||
<img src="/screenshots/filter_after.png" width="30%" alt="After"/>
|
||||
|
||||
### Full Fragment code
|
||||
|
||||
```java
|
||||
import com.nononsenseapps.filepicker.FilePickerFragment;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class FilteredFilePickerFragment extends FilePickerFragment {
|
||||
|
||||
// File extension to filter on
|
||||
private static final String EXTENSION = ".txt";
|
||||
|
||||
/**
|
||||
*
|
||||
* @param file
|
||||
* @return The file extension. If file has no extension, it returns null.
|
||||
*/
|
||||
private String getExtension(@NonNull File file) {
|
||||
String path = file.getPath();
|
||||
int i = path.lastIndexOf(".");
|
||||
if (i < 0) {
|
||||
return null;
|
||||
} else {
|
||||
return path.substring(i);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isItemVisible(final File file) {
|
||||
boolean ret = super.isItemVisible(file);
|
||||
if (ret && !isDir(file) && (mode == MODE_FILE || mode == MODE_FILE_AND_DIR)) {
|
||||
String ext = getExtension(file);
|
||||
return ext != null && EXTENSION.equalsIgnoreCase(ext);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
@ -1,138 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:33:43+02:00"
|
||||
title = "Override the back button"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
identifier = "override_back_button"
|
||||
url = "example/override_back_button/"
|
||||
parent = "Examples"
|
||||
weight = 70
|
||||
|
||||
+++
|
||||
|
||||
In case you want the back button to navigate the hierarchy instead of
|
||||
instantly exiting the activity, this is one approach you might take.
|
||||
|
||||
## Create an activity which overrides the back button and loads a custom fragment
|
||||
|
||||
```java
|
||||
package com.nononsenseapps.filepicker.examples.backbutton;
|
||||
|
||||
import android.os.Environment;
|
||||
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerFragment;
|
||||
import com.nononsenseapps.filepicker.FilePickerActivity;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class BackHandlingFilePickerActivity extends FilePickerActivity {
|
||||
|
||||
/**
|
||||
* Need access to the fragment
|
||||
*/
|
||||
BackHandlingFilePickerFragment currentFragment;
|
||||
|
||||
/**
|
||||
* Return a copy of the new fragment and set the variable above.
|
||||
*/
|
||||
@Override
|
||||
protected AbstractFilePickerFragment<File> getFragment(
|
||||
final String startPath, final int mode, final boolean allowMultiple,
|
||||
final boolean allowDirCreate, final boolean allowExistingFile,
|
||||
final boolean singleClick) {
|
||||
|
||||
// startPath is allowed to be null.
|
||||
// In that case, default folder should be SD-card and not "/"
|
||||
String path = (startPath != null ? startPath
|
||||
: Environment.getExternalStorageDirectory().getPath());
|
||||
|
||||
currentFragment = new BackHandlingFilePickerFragment();
|
||||
currentFragment.setArgs(path, mode, allowMultiple, allowDirCreate,
|
||||
allowExistingFile, singleClick);
|
||||
return currentFragment;
|
||||
}
|
||||
|
||||
/**
|
||||
* Override the back-button.
|
||||
*/
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
// If at top most level, normal behaviour
|
||||
if (currentFragment.isBackTop()) {
|
||||
super.onBackPressed();
|
||||
} else {
|
||||
// Else go up
|
||||
currentFragment.goUp();
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## In your custom fragment, implement the goUp and isBackTop methods
|
||||
|
||||
```java
|
||||
package com.nononsenseapps.filepicker.examples.backbutton;
|
||||
|
||||
import com.nononsenseapps.filepicker.FilePickerFragment;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class BackHandlingFilePickerFragment extends FilePickerFragment {
|
||||
|
||||
/**
|
||||
* For consistency, the top level the back button checks against should be the start path.
|
||||
* But it will fall back on /.
|
||||
*/
|
||||
public File getBackTop() {
|
||||
return getPath(getArguments().getString(KEY_START_PATH, "/"));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true if the current path is the startpath or /
|
||||
*/
|
||||
public boolean isBackTop() {
|
||||
return 0 == compareFiles(mCurrentPath, getBackTop()) ||
|
||||
0 == compareFiles(mCurrentPath, new File("/"));
|
||||
}
|
||||
|
||||
/**
|
||||
* Go up on level, same as pressing on "..".
|
||||
*/
|
||||
public void goUp() {
|
||||
mCurrentPath = getParent(mCurrentPath);
|
||||
mCheckedItems.clear();
|
||||
mCheckedVisibleViewHolders.clear();
|
||||
refresh(mCurrentPath);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Example manifest
|
||||
|
||||
Make sure `android-theme` points to the correct theme.
|
||||
|
||||
```xml
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.nononsenseapps.filepicker.examples">
|
||||
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<!-- Only needed to create sub directories. -->
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/FilePickerTheme">
|
||||
|
||||
<activity
|
||||
android:name=".backbutton.BackHandlingFilePickerActivity"
|
||||
android:label="Override back button"
|
||||
android:theme="@style/FilePickerTheme">
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
```
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:35:01+02:00"
|
||||
title = "Override selection behavior"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
identifier = "override_selection_behavior"
|
||||
url = "example/override_selection_behavior/"
|
||||
parent = "Examples"
|
||||
weight = 99
|
||||
|
||||
+++
|
||||
|
||||
New in [2.4.0](https://github.com/spacecowboy/NoNonsense-FilePicker/releases/tag/v2.4.0) are overridable methods to handle UI-interactions. The following methods are now available for augmentation:
|
||||
|
||||
- onClickOK, handles ok button.
|
||||
- onClickCancel, handles cancel button.
|
||||
- onClickHeader, handles clicks on "..".
|
||||
- onClickDir, handles clicks on non-selectable items (usually directories).
|
||||
- onLongClickDir, handles long clicks on non-selectable items.
|
||||
- onClickCheckable, handles clicks on selectable items.
|
||||
- onLongClickCheckable, handles long clicks on selectable items.
|
||||
- onClickCheckBox, handles clicks on the checkbox of selectable items.
|
||||
|
||||
Please see the existing implementations before you override any of them.
|
||||
|
||||
## Simple example, make clicks instantly select items
|
||||
|
||||
As asked in [#48](https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48), what if the picker is configured for selecting a single file and you want a click on that to instantly return the result. The default implementation will mark the item as selected, and then the user is required to press the OK button. This small change will make the operation a single click action, returning instantly once the user selects something.
|
||||
|
||||
```java
|
||||
public class SingleFilePickerFragment extends FilePickerFragment {
|
||||
@Override
|
||||
public void onClickCheckable(View v, CheckableViewHolder vh) {
|
||||
if (!allowMultiple) {
|
||||
// Clear is necessary, in case user clicked some checkbox directly
|
||||
mCheckedItems.clear();
|
||||
mCheckedItems.add(vh.file);
|
||||
onClickOk(null);
|
||||
} else {
|
||||
super.onClickCheckable(v, vh);
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Now the astute reader might wonder, if my filepicker is only going to be used for selecting single files, why not just do:
|
||||
|
||||
```java
|
||||
public void onClickCheckable(View v, CheckableViewHolder vh) {
|
||||
super.onClickCheckable(v, vh);
|
||||
onClickOk(null);
|
||||
}
|
||||
```
|
||||
|
||||
The reason is that the default implementation will animate the checkbox being selected on press. If you are closing the picker directly once the user selects something, you are basically animating something which isn't going to be seen and thus you are wasting (not that much) resources. Better to not animate at all in that case.
|
||||
|
|
@ -1,108 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:10:46+02:00"
|
||||
title = "Change the sort order"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "Examples"
|
||||
identifier = "sortorder"
|
||||
url = "example/sortorder/"
|
||||
weight = 0
|
||||
+++
|
||||
|
||||
By default, the SD-card picker will display all files in alphabetical order. But what if you want a different sort-order?
|
||||
|
||||
You can override the sorting by overriding the `compareFiles`-method:
|
||||
|
||||
```java
|
||||
@Override
|
||||
protected int compareFiles(File lhs, File rhs) {
|
||||
if (lhs.isDirectory() && !rhs.isDirectory()) {
|
||||
return -1;
|
||||
} else if (rhs.isDirectory() && !lhs.isDirectory()) {
|
||||
return 1;
|
||||
}
|
||||
// This was the previous behaviour for all file-file comparisons. Now it's
|
||||
// only done if the files have the same extension, or no extension.
|
||||
else if (getExtension(lhs) != null && getExtension(lhs).equalsIgnoreCase(getExtension(rhs)) ||
|
||||
getExtension(lhs) == null && getExtension(rhs) == null) {
|
||||
return lhs.getName().compareToIgnoreCase(rhs.getName());
|
||||
}
|
||||
// Otherwise, we sort on extension placing files with no extension last.
|
||||
else if (getExtension(lhs) != null && getExtension(rhs) != null) {
|
||||
// Both have extension, just compare extensions
|
||||
return getExtension(lhs).compareToIgnoreCase(getExtension(rhs));
|
||||
} else if (getExtension(lhs) != null) {
|
||||
// Left has extension, place it first
|
||||
return -1;
|
||||
} else {
|
||||
// Right has extension, place it first
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Before and After
|
||||
<img src="/screenshots/sorting_before.png" width="30%" alt="Before"/>
|
||||
<img src="/screenshots/sorting_after.png" width="30%" alt="After"/>
|
||||
|
||||
### Full Fragment code
|
||||
|
||||
```java
|
||||
import com.nononsenseapps.filepicker.FilePickerFragment;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class SortedFilePickerFragment extends FilePickerFragment {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param file
|
||||
* @return The file extension. If file has no extension, it returns null.
|
||||
*/
|
||||
private String getExtension(@NonNull File file) {
|
||||
String path = file.getPath();
|
||||
int i = path.lastIndexOf(".");
|
||||
if (i < 0) {
|
||||
return null;
|
||||
} else {
|
||||
return path.substring(i);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Compare two files to determine their relative sort order. This follows the usual
|
||||
* comparison interface. Override to determine your own custom sort order.
|
||||
*
|
||||
* @param lhs File on the "left-hand side"
|
||||
* @param rhs File on the "right-hand side"
|
||||
* @return -1 if if lhs should be placed before rhs, 0 if they are equal,
|
||||
* and 1 if rhs should be placed before lhs
|
||||
*/
|
||||
@Override
|
||||
protected int compareFiles(File lhs, File rhs) {
|
||||
if (lhs.isDirectory() && !rhs.isDirectory()) {
|
||||
return -1;
|
||||
} else if (rhs.isDirectory() && !lhs.isDirectory()) {
|
||||
return 1;
|
||||
}
|
||||
// This was the previous behaviour for all file-file comparisons. Now it's
|
||||
// only done if the files have the same extension, or no extension.
|
||||
else if (getExtension(lhs) != null && getExtension(lhs).equalsIgnoreCase(getExtension(rhs)) ||
|
||||
getExtension(lhs) == null && getExtension(rhs) == null) {
|
||||
return lhs.getName().compareToIgnoreCase(rhs.getName());
|
||||
}
|
||||
// Otherwise, we sort on extension placing files with no extension last.
|
||||
else if (getExtension(lhs) != null && getExtension(rhs) != null) {
|
||||
// Both have extension, just compare extensions
|
||||
return getExtension(lhs).compareToIgnoreCase(getExtension(rhs));
|
||||
} else if (getExtension(lhs) != null) {
|
||||
// Left has extension, place it first
|
||||
return -1;
|
||||
} else {
|
||||
// Right has extension, place it first
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T17:36:40+02:00"
|
||||
title = "Standalone fragment"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
identifier = "standalone_fragment"
|
||||
url = "example/standalone_fragment/"
|
||||
parent = "Examples"
|
||||
weight = 99
|
||||
|
||||
+++
|
||||
|
||||
|
||||
To use the fragment together with an existing toolbar/action bar, a few things should be overridden.
|
||||
|
||||
Here's a minimal example where the toolbar is intercepted from being set as the main toolbar. The menu creation is also intercepted and populates the toolbar directly.
|
||||
|
||||
```java
|
||||
public class StandaloneFilePickerFragment extends FilePickerFragment {
|
||||
|
||||
protected Toolbar mToolbar;
|
||||
|
||||
@Override
|
||||
protected void setupToolbar(Toolbar toolbar) {
|
||||
// Prevent it from being set as main toolbar by NOT calling super.setupToolbar().
|
||||
mToolbar = toolbar;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||
// Populate the toolbar with the menu items instead of the action bar.
|
||||
mToolbar.inflateMenu(R.menu.picker_actions);
|
||||
|
||||
// Set a menu listener on the toolbar with calls the regular onOptionsItemSelected method.
|
||||
mToolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
|
||||
@Override
|
||||
public boolean onMenuItemClick(MenuItem item) {
|
||||
return onOptionsItemSelected(item);
|
||||
}
|
||||
});
|
||||
|
||||
// This is usually handled in onCreateOptions so do it here instead.
|
||||
MenuItem item = mToolbar.getMenu().findItem(com.nononsenseapps.filepicker.R.id.nnf_action_createdir);
|
||||
item.setVisible(allowCreateDir);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
@ -1,220 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T16:42:44+02:00"
|
||||
title = "Readme"
|
||||
type = "index"
|
||||
aliases = ["/readme/"]
|
||||
+++
|
||||
|
||||
<p>
|
||||
<img src="/screenshots/Nexus6-picker-dark.png" width="25%"/>
|
||||
|
||||
<img src="/screenshots/Nexus10-picker-light.png" width="60%"/>
|
||||
</p>
|
||||
|
||||
- Extendable for sources other than SD-card (Dropbox, FTP, Drive, etc)
|
||||
- Can select multiple items
|
||||
- Select directories or files, or both
|
||||
- Create new directories in the picker
|
||||
- Material theme with AppCompat
|
||||
|
||||
## Yet another file picker library?
|
||||
|
||||
I needed a file picker that had two primary properties:
|
||||
|
||||
1. Easy to extend: I needed a file picker that would work for normal
|
||||
files on the SD-card, and also for using the Dropbox API.
|
||||
2. Able to create a directory in the picker.
|
||||
|
||||
This project has both of those qualities. As a bonus, it also scales
|
||||
nicely to work on any phone or tablet. The core is placed in abstract
|
||||
classes, so it is fairly easy to extend the picker to create
|
||||
your own.
|
||||
|
||||
The library includes an implementation that allows the user to pick
|
||||
files from the SD-card. But the picker could easily be extended to get
|
||||
its file listings from another source, such as Dropbox, FTP, SSH and
|
||||
so on. The sample app includes implementations which browses your
|
||||
Dropbox and a Linux mirror FTP-server.
|
||||
|
||||
By inheriting from an Activity, the picker is able to be rendered as
|
||||
full screen on small screens and as a dialog on large screens. It does
|
||||
this through the theme system, so it is very important for the
|
||||
activity to use a correctly configured theme.
|
||||
|
||||
## How to include in your project (with Gradle)
|
||||
|
||||
Just add the dependency to your *build.gradle*:
|
||||
|
||||
```groovy
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.nononsenseapps:filepicker:3.0.0'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
## How to use the included SD-card picker:
|
||||
|
||||
### Include permission in your manifest
|
||||
|
||||
```xml
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
```
|
||||
|
||||
### Include the file picker activity
|
||||
|
||||
The intent filter is optional depending on your use case. Note that
|
||||
the theme set in the manifest is important.
|
||||
|
||||
```xml
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.FilePickerActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/FilePickerTheme">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
```
|
||||
|
||||
### Configure the theme
|
||||
|
||||
You must **set the theme** on the activity, but you can configure it to
|
||||
match your existing application theme. You can also name it whatever
|
||||
you like..
|
||||
|
||||
```xml
|
||||
<!-- You can also inherit from NNF_BaseTheme.Light -->
|
||||
<style name="FilePickerTheme" parent="NNF_BaseTheme">
|
||||
<!-- Set these to match your theme -->
|
||||
<item name="colorPrimary">@color/primary</item>
|
||||
<item name="colorPrimaryDark">@color/primary_dark</item>
|
||||
<item name="colorAccent">@color/accent</item>
|
||||
|
||||
<!-- Need to set this also to style create folder dialog -->
|
||||
<item name="alertDialogTheme">@style/FilePickerAlertDialogTheme</item>
|
||||
|
||||
<!-- If you want to set a specific toolbar theme, do it here -->
|
||||
<!-- <item name="nnf_toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> -->
|
||||
</style>
|
||||
|
||||
<style name="FilePickerAlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
|
||||
<item name="colorPrimary">@color/primary</item>
|
||||
<item name="colorPrimaryDark">@color/primary_dark</item>
|
||||
<item name="colorAccent">@color/accent</item>
|
||||
</style>
|
||||
```
|
||||
|
||||
### Starting the picker in your app
|
||||
|
||||
```java
|
||||
// This always works
|
||||
Intent i = new Intent(context, FilePickerActivity.class);
|
||||
// This works if you defined the intent filter
|
||||
// Intent i = new Intent(Intent.ACTION_GET_CONTENT);
|
||||
|
||||
// Set these depending on your use case. These are the defaults.
|
||||
i.putExtra(FilePickerActivity.EXTRA_ALLOW_MULTIPLE, false);
|
||||
i.putExtra(FilePickerActivity.EXTRA_ALLOW_CREATE_DIR, false);
|
||||
i.putExtra(FilePickerActivity.EXTRA_MODE, FilePickerActivity.MODE_FILE);
|
||||
|
||||
// Configure initial directory by specifying a String.
|
||||
// You could specify a String like "/storage/emulated/0/", but that can
|
||||
// dangerous. Always use Android's API calls to get paths to the SD-card or
|
||||
// internal memory.
|
||||
i.putExtra(FilePickerActivity.EXTRA_START_PATH, Environment.getExternalStorageDirectory().getPath());
|
||||
|
||||
startActivityForResult(i, FILE_CODE);
|
||||
```
|
||||
|
||||
### Handling the result
|
||||
|
||||
If you have a minimum requirement of Jelly Bean (API 16) and above,
|
||||
you can skip the second method.
|
||||
|
||||
```java
|
||||
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
||||
@Override
|
||||
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
if (requestCode == FILE_CODE && resultCode == Activity.RESULT_OK) {
|
||||
if (data.getBooleanExtra(FilePickerActivity.EXTRA_ALLOW_MULTIPLE, false)) {
|
||||
// For JellyBean and above
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
||||
ClipData clip = data.getClipData();
|
||||
|
||||
if (clip != null) {
|
||||
for (int i = 0; i < clip.getItemCount(); i++) {
|
||||
Uri uri = clip.getItemAt(i).getUri();
|
||||
// Do something with the URI
|
||||
}
|
||||
}
|
||||
// For Ice Cream Sandwich
|
||||
} else {
|
||||
ArrayList<String> paths = data.getStringArrayListExtra
|
||||
(FilePickerActivity.EXTRA_PATHS);
|
||||
|
||||
if (paths != null) {
|
||||
for (String path: paths) {
|
||||
Uri uri = Uri.parse(path);
|
||||
// Do something with the URI
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
Uri uri = data.getData();
|
||||
// Do something with the URI
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Customizing the picker
|
||||
|
||||
Extend `AbstractFilePickerActivity` and implement `getFragment`. It
|
||||
should return an instance of `AbstractFilePickerFragment`. This
|
||||
basically means that the activity is just the same boilerplate with as
|
||||
single line changed (see the sample app's Dropbox example for an
|
||||
activity which actually has to do some extra work):
|
||||
|
||||
```java
|
||||
// Making a custom SD-card picker
|
||||
public class MyPickerActivity extends AbstractFilePickerActivity<File> {
|
||||
|
||||
public MyPickerActivity() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected AbstractFilePickerFragment<File> getFragment(
|
||||
final String startPath, final int mode, final boolean allowMultiple,
|
||||
final boolean allowCreateDir) {
|
||||
// Only the fragment in this line needs to be changed
|
||||
AbstractFilePickerFragment<File> fragment = new MyPickerFragment();
|
||||
fragment.setArgs(startPath, mode, allowMultiple, allowCreateDir);
|
||||
return fragment;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Extend AbstractFilePickerFragment
|
||||
|
||||
Which requires you to implement
|
||||
|
||||
- onNewFolder
|
||||
- isDir
|
||||
- getParent
|
||||
- getPath
|
||||
- getFullPath
|
||||
- getName
|
||||
- getRoot
|
||||
- toUri
|
||||
- getLoader
|
||||
|
||||
If you only want to make a custom SD-card picker, you can instead extend `FilePickerFragment`, and only override the relevant method you want to change.
|
||||
|
||||
See the sample app and the examples for some concrete code.
|
||||
|
|
@ -1,382 +0,0 @@
|
|||
+++
|
||||
date = "2016-07-16T16:35:07+02:00"
|
||||
title = "License"
|
||||
|
||||
+++
|
||||
Copyright (c) 2016 Jonas Kalderstam <jonas@cowboyprogrammer.org>
|
||||
|
||||
```text
|
||||
Mozilla Public License Version 2.0
|
||||
==================================
|
||||
|
||||
1. Definitions
|
||||
--------------
|
||||
|
||||
1.1. "Contributor"
|
||||
means each individual or legal entity that creates, contributes to
|
||||
the creation of, or owns Covered Software.
|
||||
|
||||
1.2. "Contributor Version"
|
||||
means the combination of the Contributions of others (if any) used
|
||||
by a Contributor and that particular Contributor's Contribution.
|
||||
|
||||
1.3. "Contribution"
|
||||
means Covered Software of a particular Contributor.
|
||||
|
||||
1.4. "Covered Software"
|
||||
means Source Code Form to which the initial Contributor has attached
|
||||
the notice in Exhibit A, the Executable Form of such Source Code
|
||||
Form, and Modifications of such Source Code Form, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.5. "Incompatible With Secondary Licenses"
|
||||
means
|
||||
|
||||
(a) that the initial Contributor has attached the notice described
|
||||
in Exhibit B to the Covered Software; or
|
||||
|
||||
(b) that the Covered Software was made available under the terms of
|
||||
version 1.1 or earlier of the License, but not also under the
|
||||
terms of a Secondary License.
|
||||
|
||||
1.6. "Executable Form"
|
||||
means any form of the work other than Source Code Form.
|
||||
|
||||
1.7. "Larger Work"
|
||||
means a work that combines Covered Software with other material, in
|
||||
a separate file or files, that is not Covered Software.
|
||||
|
||||
1.8. "License"
|
||||
means this document.
|
||||
|
||||
1.9. "Licensable"
|
||||
means having the right to grant, to the maximum extent possible,
|
||||
whether at the time of the initial grant or subsequently, any and
|
||||
all of the rights conveyed by this License.
|
||||
|
||||
1.10. "Modifications"
|
||||
means any of the following:
|
||||
|
||||
(a) any file in Source Code Form that results from an addition to,
|
||||
deletion from, or modification of the contents of Covered
|
||||
Software; or
|
||||
|
||||
(b) any new file in Source Code Form that contains any Covered
|
||||
Software.
|
||||
|
||||
1.11. "Patent Claims" of a Contributor
|
||||
means any patent claim(s), including without limitation, method,
|
||||
process, and apparatus claims, in any patent Licensable by such
|
||||
Contributor that would be infringed, but for the grant of the
|
||||
License, by the making, using, selling, offering for sale, having
|
||||
made, import, or transfer of either its Contributions or its
|
||||
Contributor Version.
|
||||
|
||||
1.12. "Secondary License"
|
||||
means either the GNU General Public License, Version 2.0, the GNU
|
||||
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||
Public License, Version 3.0, or any later versions of those
|
||||
licenses.
|
||||
|
||||
1.13. "Source Code Form"
|
||||
means the form of the work preferred for making modifications.
|
||||
|
||||
1.14. "You" (or "Your")
|
||||
means an individual or a legal entity exercising rights under this
|
||||
License. For legal entities, "You" includes any entity that
|
||||
controls, is controlled by, or is under common control with You. For
|
||||
purposes of this definition, "control" means (a) the power, direct
|
||||
or indirect, to cause the direction or management of such entity,
|
||||
whether by contract or otherwise, or (b) ownership of more than
|
||||
fifty percent (50%) of the outstanding shares or beneficial
|
||||
ownership of such entity.
|
||||
|
||||
2. License Grants and Conditions
|
||||
--------------------------------
|
||||
|
||||
2.1. Grants
|
||||
|
||||
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or trademark)
|
||||
Licensable by such Contributor to use, reproduce, make available,
|
||||
modify, display, perform, distribute, and otherwise exploit its
|
||||
Contributions, either on an unmodified basis, with Modifications, or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||
for sale, have made, import, and otherwise transfer either its
|
||||
Contributions or its Contributor Version.
|
||||
|
||||
2.2. Effective Date
|
||||
|
||||
The licenses granted in Section 2.1 with respect to any Contribution
|
||||
become effective for each Contribution on the date the Contributor first
|
||||
distributes such Contribution.
|
||||
|
||||
2.3. Limitations on Grant Scope
|
||||
|
||||
The licenses granted in this Section 2 are the only rights granted under
|
||||
this License. No additional rights or licenses will be implied from the
|
||||
distribution or licensing of Covered Software under this License.
|
||||
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||
Contributor:
|
||||
|
||||
(a) for any code that a Contributor has removed from Covered Software;
|
||||
or
|
||||
|
||||
(b) for infringements caused by: (i) Your and any other third party's
|
||||
modifications of Covered Software, or (ii) the combination of its
|
||||
Contributions with other software (except as part of its Contributor
|
||||
Version); or
|
||||
|
||||
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||
its Contributions.
|
||||
|
||||
This License does not grant any rights in the trademarks, service marks,
|
||||
or logos of any Contributor (except as may be necessary to comply with
|
||||
the notice requirements in Section 3.4).
|
||||
|
||||
2.4. Subsequent Licenses
|
||||
|
||||
No Contributor makes additional grants as a result of Your choice to
|
||||
distribute the Covered Software under a subsequent version of this
|
||||
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||
permitted under the terms of Section 3.3).
|
||||
|
||||
2.5. Representation
|
||||
|
||||
Each Contributor represents that the Contributor believes its
|
||||
Contributions are its original creation(s) or it has sufficient rights
|
||||
to grant the rights to its Contributions conveyed by this License.
|
||||
|
||||
2.6. Fair Use
|
||||
|
||||
This License is not intended to limit any rights You have under
|
||||
applicable copyright doctrines of fair use, fair dealing, or other
|
||||
equivalents.
|
||||
|
||||
2.7. Conditions
|
||||
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||
in Section 2.1.
|
||||
|
||||
3. Responsibilities
|
||||
-------------------
|
||||
|
||||
3.1. Distribution of Source Form
|
||||
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under
|
||||
the terms of this License. You must inform recipients that the Source
|
||||
Code Form of the Covered Software is governed by the terms of this
|
||||
License, and how they can obtain a copy of this License. You may not
|
||||
attempt to alter or restrict the recipients' rights in the Source Code
|
||||
Form.
|
||||
|
||||
3.2. Distribution of Executable Form
|
||||
|
||||
If You distribute Covered Software in Executable Form then:
|
||||
|
||||
(a) such Covered Software must also be made available in Source Code
|
||||
Form, as described in Section 3.1, and You must inform recipients of
|
||||
the Executable Form how they can obtain a copy of such Source Code
|
||||
Form by reasonable means in a timely manner, at a charge no more
|
||||
than the cost of distribution to the recipient; and
|
||||
|
||||
(b) You may distribute such Executable Form under the terms of this
|
||||
License, or sublicense it under different terms, provided that the
|
||||
license for the Executable Form does not attempt to limit or alter
|
||||
the recipients' rights in the Source Code Form under this License.
|
||||
|
||||
3.3. Distribution of a Larger Work
|
||||
|
||||
You may create and distribute a Larger Work under terms of Your choice,
|
||||
provided that You also comply with the requirements of this License for
|
||||
the Covered Software. If the Larger Work is a combination of Covered
|
||||
Software with a work governed by one or more Secondary Licenses, and the
|
||||
Covered Software is not Incompatible With Secondary Licenses, this
|
||||
License permits You to additionally distribute such Covered Software
|
||||
under the terms of such Secondary License(s), so that the recipient of
|
||||
the Larger Work may, at their option, further distribute the Covered
|
||||
Software under the terms of either this License or such Secondary
|
||||
License(s).
|
||||
|
||||
3.4. Notices
|
||||
|
||||
You may not remove or alter the substance of any license notices
|
||||
(including copyright notices, patent notices, disclaimers of warranty,
|
||||
or limitations of liability) contained within the Source Code Form of
|
||||
the Covered Software, except that You may alter any license notices to
|
||||
the extent required to remedy known factual inaccuracies.
|
||||
|
||||
3.5. Application of Additional Terms
|
||||
|
||||
You may choose to offer, and to charge a fee for, warranty, support,
|
||||
indemnity or liability obligations to one or more recipients of Covered
|
||||
Software. However, You may do so only on Your own behalf, and not on
|
||||
behalf of any Contributor. You must make it absolutely clear that any
|
||||
such warranty, support, indemnity, or liability obligation is offered by
|
||||
You alone, and You hereby agree to indemnify every Contributor for any
|
||||
liability incurred by such Contributor as a result of warranty, support,
|
||||
indemnity or liability terms You offer. You may include additional
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
jurisdiction.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation
|
||||
---------------------------------------------------
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Software due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description must
|
||||
be placed in a text file included with all distributions of the Covered
|
||||
Software under this License. Except to the extent prohibited by statute
|
||||
or regulation, such description must be sufficiently detailed for a
|
||||
recipient of ordinary skill to be able to understand it.
|
||||
|
||||
5. Termination
|
||||
--------------
|
||||
|
||||
5.1. The rights granted under this License will terminate automatically
|
||||
if You fail to comply with any of its terms. However, if You become
|
||||
compliant, then the rights granted under this License from a particular
|
||||
Contributor are reinstated (a) provisionally, unless and until such
|
||||
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||
ongoing basis, if such Contributor fails to notify You of the
|
||||
non-compliance by some reasonable means prior to 60 days after You have
|
||||
come back into compliance. Moreover, Your grants from a particular
|
||||
Contributor are reinstated on an ongoing basis if such Contributor
|
||||
notifies You of the non-compliance by some reasonable means, this is the
|
||||
first time You have received notice of non-compliance with this License
|
||||
from such Contributor, and You become compliant prior to 30 days after
|
||||
Your receipt of the notice.
|
||||
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
infringement claim (excluding declaratory judgment actions,
|
||||
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||
directly or indirectly infringes any patent, then the rights granted to
|
||||
You by any and all Contributors for the Covered Software under Section
|
||||
2.1 of this License shall terminate.
|
||||
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||
end user license agreements (excluding distributors and resellers) which
|
||||
have been validly granted by You or Your distributors under this License
|
||||
prior to termination shall survive termination.
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 6. Disclaimer of Warranty *
|
||||
* ------------------------- *
|
||||
* *
|
||||
* Covered Software is provided under this License on an "as is" *
|
||||
* basis, without warranty of any kind, either expressed, implied, or *
|
||||
* statutory, including, without limitation, warranties that the *
|
||||
* Covered Software is free of defects, merchantable, fit for a *
|
||||
* particular purpose or non-infringing. The entire risk as to the *
|
||||
* quality and performance of the Covered Software is with You. *
|
||||
* Should any Covered Software prove defective in any respect, You *
|
||||
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||
* essential part of this License. No use of any Covered Software is *
|
||||
* authorized under this License except under this disclaimer. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 7. Limitation of Liability *
|
||||
* -------------------------- *
|
||||
* *
|
||||
* Under no circumstances and under no legal theory, whether tort *
|
||||
* (including negligence), contract, or otherwise, shall any *
|
||||
* Contributor, or anyone who distributes Covered Software as *
|
||||
* permitted above, be liable to You for any direct, indirect, *
|
||||
* special, incidental, or consequential damages of any character *
|
||||
* including, without limitation, damages for lost profits, loss of *
|
||||
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||
* and all other commercial damages or losses, even if such party *
|
||||
* shall have been informed of the possibility of such damages. This *
|
||||
* limitation of liability shall not apply to liability for death or *
|
||||
* personal injury resulting from such party's negligence to the *
|
||||
* extent applicable law prohibits such limitation. Some *
|
||||
* jurisdictions do not allow the exclusion or limitation of *
|
||||
* incidental or consequential damages, so this exclusion and *
|
||||
* limitation may not apply to You. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
8. Litigation
|
||||
-------------
|
||||
|
||||
Any litigation relating to this License may be brought only in the
|
||||
courts of a jurisdiction where the defendant maintains its principal
|
||||
place of business and such litigation shall be governed by laws of that
|
||||
jurisdiction, without reference to its conflict-of-law provisions.
|
||||
Nothing in this Section shall prevent a party's ability to bring
|
||||
cross-claims or counter-claims.
|
||||
|
||||
9. Miscellaneous
|
||||
----------------
|
||||
|
||||
This License represents the complete agreement concerning the subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. Any law or regulation which provides
|
||||
that the language of a contract shall be construed against the drafter
|
||||
shall not be used to construe this License against a Contributor.
|
||||
|
||||
10. Versions of the License
|
||||
---------------------------
|
||||
|
||||
10.1. New Versions
|
||||
|
||||
Mozilla Foundation is the license steward. Except as provided in Section
|
||||
10.3, no one other than the license steward has the right to modify or
|
||||
publish new versions of this License. Each version will be given a
|
||||
distinguishing version number.
|
||||
|
||||
10.2. Effect of New Versions
|
||||
|
||||
You may distribute the Covered Software under the terms of the version
|
||||
of the License under which You originally received the Covered Software,
|
||||
or under the terms of any subsequent version published by the license
|
||||
steward.
|
||||
|
||||
10.3. Modified Versions
|
||||
|
||||
If you create software not governed by this License, and you want to
|
||||
create a new license for such software, you may create and use a
|
||||
modified version of this License if you rename the license and remove
|
||||
any references to the name of the license steward (except to note that
|
||||
such modified license differs from this License).
|
||||
|
||||
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||
Licenses
|
||||
|
||||
If You choose to distribute Source Code Form that is Incompatible With
|
||||
Secondary Licenses under the terms of this version of the License, the
|
||||
notice described in Exhibit B of this License must be attached.
|
||||
|
||||
Exhibit A - Source Code Form License Notice
|
||||
-------------------------------------------
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular
|
||||
file, then You may include the notice in a location (such as a LICENSE
|
||||
file in a relevant directory) where a recipient would be likely to look
|
||||
for such a notice.
|
||||
|
||||
You may add additional accurate notices of copyright ownership.
|
||||
|
||||
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||
---------------------------------------------------------
|
||||
|
||||
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||
defined by the Mozilla Public License, v. 2.0.
|
||||
```
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
.codehilite .hll { background-color: #ffffcc }
|
||||
.codehilite .c { color: #60a0b0; font-style: italic } /* Comment */
|
||||
.codehilite .err { border: 1px solid #FF0000 } /* Error */
|
||||
.codehilite .k { color: #007020; font-weight: bold } /* Keyword */
|
||||
.codehilite .o { color: #666666 } /* Operator */
|
||||
.codehilite .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
|
||||
.codehilite .cp { color: #007020 } /* Comment.Preproc */
|
||||
.codehilite .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
|
||||
.codehilite .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
|
||||
.codehilite .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.codehilite .ge { font-style: italic } /* Generic.Emph */
|
||||
.codehilite .gr { color: #FF0000 } /* Generic.Error */
|
||||
.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.codehilite .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.codehilite .go { color: #808080 } /* Generic.Output */
|
||||
.codehilite .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.codehilite .gs { font-weight: bold } /* Generic.Strong */
|
||||
.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.codehilite .gt { color: #0040D0 } /* Generic.Traceback */
|
||||
.codehilite .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
|
||||
.codehilite .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
|
||||
.codehilite .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
|
||||
.codehilite .kp { color: #007020 } /* Keyword.Pseudo */
|
||||
.codehilite .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
|
||||
.codehilite .kt { color: #902000 } /* Keyword.Type */
|
||||
.codehilite .m { color: #40a070 } /* Literal.Number */
|
||||
.codehilite .s { color: #4070a0 } /* Literal.String */
|
||||
.codehilite .na { color: #4070a0 } /* Name.Attribute */
|
||||
.codehilite .nb { color: #007020 } /* Name.Builtin */
|
||||
.codehilite .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
|
||||
.codehilite .no { color: #60add5 } /* Name.Constant */
|
||||
.codehilite .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.codehilite .ni { color: #d55537; font-weight: bold } /* Name.Entity */
|
||||
.codehilite .ne { color: #007020 } /* Name.Exception */
|
||||
.codehilite .nf { color: #06287e } /* Name.Function */
|
||||
.codehilite .nl { color: #002070; font-weight: bold } /* Name.Label */
|
||||
.codehilite .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.codehilite .nt { color: #062873; font-weight: bold } /* Name.Tag */
|
||||
.codehilite .nv { color: #bb60d5 } /* Name.Variable */
|
||||
.codehilite .ow { color: #007020; font-weight: bold } /* Operator.Word */
|
||||
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.codehilite .mf { color: #40a070 } /* Literal.Number.Float */
|
||||
.codehilite .mh { color: #40a070 } /* Literal.Number.Hex */
|
||||
.codehilite .mi { color: #40a070 } /* Literal.Number.Integer */
|
||||
.codehilite .mo { color: #40a070 } /* Literal.Number.Oct */
|
||||
.codehilite .sb { color: #4070a0 } /* Literal.String.Backtick */
|
||||
.codehilite .sc { color: #4070a0 } /* Literal.String.Char */
|
||||
.codehilite .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
|
||||
.codehilite .s2 { color: #4070a0 } /* Literal.String.Double */
|
||||
.codehilite .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
|
||||
.codehilite .sh { color: #4070a0 } /* Literal.String.Heredoc */
|
||||
.codehilite .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
|
||||
.codehilite .sx { color: #c65d09 } /* Literal.String.Other */
|
||||
.codehilite .sr { color: #235388 } /* Literal.String.Regex */
|
||||
.codehilite .s1 { color: #4070a0 } /* Literal.String.Single */
|
||||
.codehilite .ss { color: #517918 } /* Literal.String.Symbol */
|
||||
.codehilite .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
||||
.codehilite .vc { color: #bb60d5 } /* Name.Variable.Class */
|
||||
.codehilite .vg { color: #bb60d5 } /* Name.Variable.Global */
|
||||
.codehilite .vi { color: #bb60d5 } /* Name.Variable.Instance */
|
||||
.codehilite .il { color: #40a070 } /* Literal.Number.Integer.Long */
|
||||
|
Before Width: | Height: | Size: 370 KiB |
|
Before Width: | Height: | Size: 370 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 1134976b4fcaec84c5862460a85eaf207d8566f8
|
||||
|
|
@ -1,831 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>ChangeLog - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
ChangeLog
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>ChangeLog </h1>
|
||||
|
||||
|
||||
|
||||
<h2 id="3-0-0-https-github-com-spacecowboy-nononsense-filepicker-tree-3-0-0-2016-07-03"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/3.0.0">3.0.0</a> (2016-07-03)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.3...3.0.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Select one file with a single click <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/92">#92</a> (<a href="https://github.com/rastikw">rastikw</a>)</li>
|
||||
<li>Add ability to enter a new filename <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/83">#83</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Closed issues:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add ability to input filename <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/82">#82</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-3-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-3-2016-06-09"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.3">2.5.3</a> (2016-06-09)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.2...2.5.3">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add paths to permission and refresh methods <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/85">#85</a></li>
|
||||
<li>Add FastScroller sample implementation <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/89">#89</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
<li>Add a getItem method to FileItemAdapter <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/88">#88</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Crash while creating folder in dropbox sample <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/76">#76</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Closed issues:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Fast Scroll <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/87">#87</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-2-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-2-2016-02-24"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.2">2.5.2</a> (2016-02-24)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.1...2.5.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Dropbox should show a progress bar when loading <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/74">#74</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Dropbox sample can crash due to Inconsistent state in RecyclerView <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/75">#75</a></li>
|
||||
<li>Dropbox sample crash if multiple press on folder <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/73">#73</a></li>
|
||||
<li>probebly underscore missing <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/63">#63</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Update README.md <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/68">#68</a> (<a href="https://github.com/callmepeanut">callmepeanut</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-1-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-1-2016-01-13"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.1">2.5.1</a> (2016-01-13)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.0...2.5.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Change license to MPL <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/66">#66</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-0-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-0-2015-11-08"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.0">2.5.0</a> (2015-11-08)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.2...2.5.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add a separator line above OK/Cancel buttons <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/60">#60</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Hide hidden files in SD card picker by default <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/58">#58</a> (<a href="https://github.com/dvrajan">dvrajan</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-4-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-2-2015-09-30"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.2">v2.4.2</a> (2015-09-30)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.1...v2.4.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>lower minSdk <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/54">#54</a></li>
|
||||
<li>Spacing of filename items <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/52">#52</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Lowered minSdk to API 9 <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/55">#55</a> (<a href="https://github.com/marbat87">marbat87</a>)</li>
|
||||
<li>Add Video Thumbnail preview and set default theme to light <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/53">#53</a> (<a href="https://github.com/alishari">alishari</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-4-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-1-2015-09-14"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.1">v2.4.1</a> (2015-09-14)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.0...v2.4.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Update to latest build tools and support library 23.0.1 <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/51">#51</a> (<a href="https://github.com/alishari">alishari</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-4-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-0-2015-08-25"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.0">v2.4.0</a> (2015-08-25)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.1...v2.4.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Only allow selecting single files (when EXTRA_ALLOW_MULTIPLE is set to false) <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48">#48</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make click events overridable <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/49">#49</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-3-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-3-1-2015-08-20"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.1">v2.3.1</a> (2015-08-20)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.0...v2.3.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>FilePicker cannot be used with non-touchscreen devices <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/44">#44</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make list focusable. <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/45">#45</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-3-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-3-0-2015-08-18"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.0">v2.3.0</a> (2015-08-18)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.3...v2.3.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make sure to handle Android M’s new permission requests <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/24">#24</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-3-2015-08-04"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.3">v2.2.3</a> (2015-08-04)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.2...v2.2.3">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Enhancement: Allow adding more arguments to FilePickerFragment <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/40">#40</a></li>
|
||||
<li>Do not override existing arguments <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/41">#41</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Update travis config to run on faster containers <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/42">#42</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-2-2015-08-03"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.2">v2.2.2</a> (2015-08-03)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.1...v2.2.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Dropbox Sync API is deprecated <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/35">#35</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Ensure toasts don’t get queued up <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/39">#39</a> (<a href="https://github.com/hcoosthuizen">hcoosthuizen</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-1-2015-07-17"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.1">v2.2.1</a> (2015-07-17)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2...v2.2.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Strange error <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/34">#34</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-2015-07-13"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2">v2.2</a> (2015-07-13)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.1...v2.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Allow fragment to be used with default action bar <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/32">#32</a></li>
|
||||
<li>Allow setting of toolbar text colour <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/31">#31</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Licence <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/29">#29</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Specifying GPL3 or later <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/30">#30</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-1-2015-05-30"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.1">v2.1</a> (2015-05-30)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.5...v2.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make filepicker depend only on EXTRA_ALLOW_CREATE_DIR <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/25">#25</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Build fails <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/21">#21</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Mention that start-path is configurable <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/20">#20</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-0-5-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-5-2015-05-01"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.5">v2.0.5</a> (2015-05-01)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.4...v2.0.5">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Ic_launcher conflict with app one <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/16">#16</a> (<a href="https://github.com/NitroG42">NitroG42</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-0-4-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-4-2015-04-29"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.4">v2.0.4</a> (2015-04-29)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.3...v2.0.4">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Show miniatures for images <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/10">#10</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Rotation doesn’t work <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/15">#15</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-0-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-3-2015-04-28"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.3">v2.0.3</a> (2015-04-28)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.2...v2.0.3">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v2-0-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-2-2015-04-28"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.2">v2.0.2</a> (2015-04-28)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.0...v2.0.2">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v2-0-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-0-2015-04-27"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.0">v2.0.0</a> (2015-04-27)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.2.0...v2.0.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>crash InBackground thread <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/13">#13</a></li>
|
||||
<li>Crash on root folders <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/12">#12</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-2-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-2-0-2015-04-27"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.2.0">v1.2.0</a> (2015-04-27)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.3...v1.2.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Verify Proguard <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/8">#8</a></li>
|
||||
<li>Upload the Dropbox sample <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/5">#5</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add a Gitter chat badge to README.org <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/11">#11</a> (<a href="https://github.com/gitter-badger">gitter-badger</a>)</li>
|
||||
<li>NPE on empty dir <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/6">#6</a> (<a href="https://github.com/arkty">arkty</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-1-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-3-2014-04-02"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.3">v1.1.3</a> (2014-04-02)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.2...v1.1.3">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>FilePicker: Handle case if startPath does not exist <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/4">#4</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-1-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-2-2014-04-02"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.2">v1.1.2</a> (2014-04-02)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.1...v1.1.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Upload to Maven Central <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/3">#3</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-1-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-1-2014-04-02"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.1">v1.1.1</a> (2014-04-02)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1...v1.1.1">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v1-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-2014-04-01"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1">v1.1</a> (2014-04-01)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.0...v1.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add only files option <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/2">#2</a></li>
|
||||
<li>Make create directory toggleable <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/1">#1</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-0-2014-04-01"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.0">v1.0</a> (2014-04-01)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.99...v1.0">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v0-99-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-99-2014-03-31"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.99">v0.99</a> (2014-03-31)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.91...v0.99">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v0-91-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-91-2014-03-31"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.91">v0.91</a> (2014-03-31)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.9...v0.91">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v0-9-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-9-2014-03-31"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.9">v0.9</a> (2014-03-31)</h2>
|
||||
|
||||
<p>* <em>This Change Log was automatically generated by <a href="https://github.com/skywinder/Github-Changelog-Generator">github_changelog_generator</a></em></p>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/" title="Change the sort order">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Change the sort order
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/" title="Readme">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Readme
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,386 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Changelogs on NoNonsense FilePicker</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/</link>
|
||||
<description>Recent content in Changelogs on NoNonsense FilePicker</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 16 Jul 2016 17:06:45 +0200</lastBuildDate>
|
||||
<atom:link href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>ChangeLog</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:06:45 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/</guid>
|
||||
<description>
|
||||
|
||||
<h2 id="3-0-0-https-github-com-spacecowboy-nononsense-filepicker-tree-3-0-0-2016-07-03"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/3.0.0">3.0.0</a> (2016-07-03)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.3...3.0.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Select one file with a single click <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/92">#92</a> (<a href="https://github.com/rastikw">rastikw</a>)</li>
|
||||
<li>Add ability to enter a new filename <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/83">#83</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Closed issues:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add ability to input filename <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/82">#82</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-3-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-3-2016-06-09"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.3">2.5.3</a> (2016-06-09)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.2...2.5.3">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add paths to permission and refresh methods <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/85">#85</a></li>
|
||||
<li>Add FastScroller sample implementation <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/89">#89</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
<li>Add a getItem method to FileItemAdapter <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/88">#88</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Crash while creating folder in dropbox sample <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/76">#76</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Closed issues:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Fast Scroll <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/87">#87</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-2-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-2-2016-02-24"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.2">2.5.2</a> (2016-02-24)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.1...2.5.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Dropbox should show a progress bar when loading <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/74">#74</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Dropbox sample can crash due to Inconsistent state in RecyclerView <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/75">#75</a></li>
|
||||
<li>Dropbox sample crash if multiple press on folder <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/73">#73</a></li>
|
||||
<li>probebly underscore missing <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/63">#63</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Update README.md <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/68">#68</a> (<a href="https://github.com/callmepeanut">callmepeanut</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-1-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-1-2016-01-13"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.1">2.5.1</a> (2016-01-13)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.0...2.5.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Change license to MPL <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/66">#66</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2-5-0-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-0-2015-11-08"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.0">2.5.0</a> (2015-11-08)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.2...2.5.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add a separator line above OK/Cancel buttons <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/60">#60</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Hide hidden files in SD card picker by default <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/58">#58</a> (<a href="https://github.com/dvrajan">dvrajan</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-4-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-2-2015-09-30"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.2">v2.4.2</a> (2015-09-30)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.1...v2.4.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>lower minSdk <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/54">#54</a></li>
|
||||
<li>Spacing of filename items <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/52">#52</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Lowered minSdk to API 9 <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/55">#55</a> (<a href="https://github.com/marbat87">marbat87</a>)</li>
|
||||
<li>Add Video Thumbnail preview and set default theme to light <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/53">#53</a> (<a href="https://github.com/alishari">alishari</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-4-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-1-2015-09-14"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.1">v2.4.1</a> (2015-09-14)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.0...v2.4.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Update to latest build tools and support library 23.0.1 <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/51">#51</a> (<a href="https://github.com/alishari">alishari</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-4-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-0-2015-08-25"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.0">v2.4.0</a> (2015-08-25)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.1...v2.4.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Only allow selecting single files (when EXTRA_ALLOW_MULTIPLE is set to false) <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48">#48</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make click events overridable <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/49">#49</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-3-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-3-1-2015-08-20"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.1">v2.3.1</a> (2015-08-20)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.0...v2.3.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>FilePicker cannot be used with non-touchscreen devices <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/44">#44</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make list focusable. <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/45">#45</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-3-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-3-0-2015-08-18"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.0">v2.3.0</a> (2015-08-18)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.3...v2.3.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make sure to handle Android M&rsquo;s new permission requests <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/24">#24</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-3-2015-08-04"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.3">v2.2.3</a> (2015-08-04)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.2...v2.2.3">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Enhancement: Allow adding more arguments to FilePickerFragment <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/40">#40</a></li>
|
||||
<li>Do not override existing arguments <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/41">#41</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Update travis config to run on faster containers <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/42">#42</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-2-2015-08-03"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.2">v2.2.2</a> (2015-08-03)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.1...v2.2.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Dropbox Sync API is deprecated <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/35">#35</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Ensure toasts don&rsquo;t get queued up <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/39">#39</a> (<a href="https://github.com/hcoosthuizen">hcoosthuizen</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-1-2015-07-17"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.1">v2.2.1</a> (2015-07-17)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2...v2.2.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Strange error <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/34">#34</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-2015-07-13"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2">v2.2</a> (2015-07-13)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.1...v2.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Allow fragment to be used with default action bar <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/32">#32</a></li>
|
||||
<li>Allow setting of toolbar text colour <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/31">#31</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Licence <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/29">#29</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Specifying GPL3 or later <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/30">#30</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-1-2015-05-30"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.1">v2.1</a> (2015-05-30)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.5...v2.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Make filepicker depend only on EXTRA_ALLOW_CREATE_DIR <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/25">#25</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Build fails <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/21">#21</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Mention that start-path is configurable <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/20">#20</a> (<a href="https://github.com/spacecowboy">spacecowboy</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-0-5-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-5-2015-05-01"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.5">v2.0.5</a> (2015-05-01)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.4...v2.0.5">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Ic_launcher conflict with app one <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/16">#16</a> (<a href="https://github.com/NitroG42">NitroG42</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-0-4-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-4-2015-04-29"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.4">v2.0.4</a> (2015-04-29)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.3...v2.0.4">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Show miniatures for images <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/10">#10</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Rotation doesn&rsquo;t work <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/15">#15</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v2-0-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-3-2015-04-28"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.3">v2.0.3</a> (2015-04-28)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.2...v2.0.3">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v2-0-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-2-2015-04-28"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.2">v2.0.2</a> (2015-04-28)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.0...v2.0.2">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v2-0-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-0-2015-04-27"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.0">v2.0.0</a> (2015-04-27)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.2.0...v2.0.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>crash InBackground thread <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/13">#13</a></li>
|
||||
<li>Crash on root folders <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/12">#12</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-2-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-2-0-2015-04-27"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.2.0">v1.2.0</a> (2015-04-27)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.3...v1.2.0">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Verify Proguard <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/8">#8</a></li>
|
||||
<li>Upload the Dropbox sample <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/5">#5</a></li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Merged pull requests:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add a Gitter chat badge to README.org <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/11">#11</a> (<a href="https://github.com/gitter-badger">gitter-badger</a>)</li>
|
||||
<li>NPE on empty dir <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/pull/6">#6</a> (<a href="https://github.com/arkty">arkty</a>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-1-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-3-2014-04-02"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.3">v1.1.3</a> (2014-04-02)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.2...v1.1.3">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Fixed bugs:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>FilePicker: Handle case if startPath does not exist <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/4">#4</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-1-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-2-2014-04-02"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.2">v1.1.2</a> (2014-04-02)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.1...v1.1.2">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Upload to Maven Central <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/3">#3</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-1-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-1-2014-04-02"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.1">v1.1.1</a> (2014-04-02)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1...v1.1.1">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v1-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-2014-04-01"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1">v1.1</a> (2014-04-01)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.0...v1.1">Full Changelog</a></p>
|
||||
|
||||
<p><strong>Implemented enhancements:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Add only files option <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/2">#2</a></li>
|
||||
<li>Make create directory toggleable <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/1">#1</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="v1-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-0-2014-04-01"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.0">v1.0</a> (2014-04-01)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.99...v1.0">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v0-99-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-99-2014-03-31"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.99">v0.99</a> (2014-03-31)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.91...v0.99">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v0-91-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-91-2014-03-31"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.91">v0.91</a> (2014-03-31)</h2>
|
||||
|
||||
<p><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.9...v0.91">Full Changelog</a></p>
|
||||
|
||||
<h2 id="v0-9-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-9-2014-03-31"><a href="https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.9">v0.9</a> (2014-03-31)</h2>
|
||||
|
||||
<p>* <em>This Change Log was automatically generated by <a href="https://github.com/skywinder/Github-Changelog-Generator">github_changelog_generator</a></em></p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -1,625 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Custom item layout - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Custom item layout
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Custom item layout </h1>
|
||||
|
||||
|
||||
|
||||
<p>Say you want to browse some files which have really long names. By default, filenames will be cut if they exceed one line in width like <code>ThisIsAReallyLongFi...</code>. What if we really wanted it show like in this image?</p>
|
||||
|
||||
<p><img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/itemlayout_longfilename.png" alt="Example of a long filename" /></p>
|
||||
|
||||
<p>The behavior of the text is defined in the listitem layouts:
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_checkable.xml">nnf_filepicker_listitem_checkable</a>
|
||||
and
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_dir.xml">nnf_filepicker_listitem_dir</a>.</p>
|
||||
|
||||
<p>There are two kinds of layouts, one with a checkbox to allow selection, and one without a checkbox. The second one is also used for the special header item <code>..</code> though you could of course have a special layout for that if you wanted.</p>
|
||||
|
||||
<h3 id="layouts">Layouts</h3>
|
||||
|
||||
<p>Let’s create some new layouts which will support longer filenames as follows:</p>
|
||||
|
||||
<p><strong>longer_listitem_checkable.xml</strong></p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020"><?xml version="1.0" encoding="utf-8"?></span>
|
||||
<span style="color: #062873; font-weight: bold"><LinearLayout</span> <span style="color: #4070a0">xmlns:android="http://schemas.android.com/apk/res/android"</span>
|
||||
<span style="color: #4070a0">xmlns:tools="http://schemas.android.com/tools"</span>
|
||||
<span style="color: #4070a0">android:layout_width="match_parent"</span>
|
||||
<span style="color: #4070a0">android:layout_height="wrap_content"</span>
|
||||
<span style="color: #4070a0">android:background="?android:selectableItemBackground"</span>
|
||||
<span style="color: #4070a0">android:minHeight="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:orientation="horizontal"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic"><!--suppress AndroidDomInspection --></span>
|
||||
<span style="color: #062873; font-weight: bold"><ImageView</span>
|
||||
<span style="color: #4070a0">android:id="@+id/item_icon"</span>
|
||||
<span style="color: #4070a0">android:layout_width="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:layout_height="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:adjustViewBounds="true"</span>
|
||||
<span style="color: #4070a0">android:scaleType="fitCenter"</span>
|
||||
<span style="color: #4070a0">android:src="@drawable/nnf_ic_file_folder"</span>
|
||||
<span style="color: #4070a0">android:tint="?attr/colorAccent"</span>
|
||||
<span style="color: #4070a0">android:visibility="visible"</span>
|
||||
<span style="color: #4070a0">tools:ignore="ContentDescription"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><TextView</span>
|
||||
<span style="color: #4070a0">android:id="@android:id/text1"</span>
|
||||
<span style="color: #4070a0">style="?android:textAppearanceLarge"</span>
|
||||
<span style="color: #4070a0">android:layout_width="0dp"</span>
|
||||
<span style="color: #4070a0">android:layout_height="wrap_content"</span>
|
||||
<span style="color: #4070a0">android:minHeight="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:layout_weight="1"</span>
|
||||
<span style="color: #4070a0">android:ellipsize="end"</span>
|
||||
<span style="color: #4070a0">android:gravity="center_vertical"</span>
|
||||
<span style="color: #4070a0">android:maxLines="4"</span>
|
||||
<span style="color: #4070a0">android:padding="8dp"</span><span style="color: #062873; font-weight: bold">/></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><CheckBox</span>
|
||||
<span style="color: #4070a0">android:id="@+id/checkbox"</span>
|
||||
<span style="color: #4070a0">android:layout_width="wrap_content"</span>
|
||||
<span style="color: #4070a0">android:layout_height="match_parent"</span>
|
||||
<span style="color: #4070a0">android:paddingEnd="8dp"</span>
|
||||
<span style="color: #4070a0">android:paddingRight="8dp"</span>
|
||||
<span style="color: #4070a0">tools:ignore="RtlSymmetry"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"></LinearLayout></span>
|
||||
</pre></div>
|
||||
|
||||
<p><strong>longer_listitem_dir.xml</strong></p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020"><?xml version="1.0" encoding="utf-8"?></span>
|
||||
<span style="color: #062873; font-weight: bold"><LinearLayout</span> <span style="color: #4070a0">xmlns:android="http://schemas.android.com/apk/res/android"</span>
|
||||
<span style="color: #4070a0">xmlns:tools="http://schemas.android.com/tools"</span>
|
||||
<span style="color: #4070a0">android:layout_width="match_parent"</span>
|
||||
<span style="color: #4070a0">android:layout_height="wrap_content"</span>
|
||||
<span style="color: #4070a0">android:background="?android:selectableItemBackground"</span>
|
||||
<span style="color: #4070a0">android:minHeight="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:orientation="horizontal"</span>
|
||||
<span style="color: #062873; font-weight: bold">></span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic"><!--suppress AndroidDomInspection --></span>
|
||||
<span style="color: #062873; font-weight: bold"><ImageView</span>
|
||||
<span style="color: #4070a0">android:id="@+id/item_icon"</span>
|
||||
<span style="color: #4070a0">android:layout_width="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:layout_height="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:adjustViewBounds="true"</span>
|
||||
<span style="color: #4070a0">android:scaleType="center"</span>
|
||||
<span style="color: #4070a0">android:src="@drawable/nnf_ic_file_folder"</span>
|
||||
<span style="color: #4070a0">android:tint="?attr/colorAccent"</span>
|
||||
<span style="color: #4070a0">android:visibility="visible"</span>
|
||||
<span style="color: #4070a0">tools:ignore="ContentDescription"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><TextView</span>
|
||||
<span style="color: #4070a0">android:id="@android:id/text1"</span>
|
||||
<span style="color: #4070a0">style="?android:textAppearanceLarge"</span>
|
||||
<span style="color: #4070a0">android:layout_width="0dp"</span>
|
||||
<span style="color: #4070a0">android:layout_height="wrap_content"</span>
|
||||
<span style="color: #4070a0">android:minHeight="?android:listPreferredItemHeight"</span>
|
||||
<span style="color: #4070a0">android:layout_weight="1"</span>
|
||||
<span style="color: #4070a0">android:ellipsize="end"</span>
|
||||
<span style="color: #4070a0">android:gravity="center_vertical"</span>
|
||||
<span style="color: #4070a0">android:maxLines="4"</span>
|
||||
<span style="color: #4070a0">android:padding="8dp"</span><span style="color: #062873; font-weight: bold">/></span>
|
||||
<span style="color: #062873; font-weight: bold"></LinearLayout></span>
|
||||
</pre></div>
|
||||
|
||||
<p>Note that I defined the TextViews to have a maximum of 4 lines (actual number is up to you), and a minimum height of <code>android:listPreferredItemHeight</code> (this I recommend, otherwise it looks wonky and off-center). And just be clear, the <em>ids</em> of these fields must be <code>@+id/item_icon</code>, <code>@android:id/text1</code>, and <code>@+id/checkbox</code>, or the code WILL crash on you.</p>
|
||||
|
||||
<h3 id="code">Code</h3>
|
||||
|
||||
<p>To use the new layouts, you need to override the <code>onCreateViewHolder</code> method in
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/java/com/nononsenseapps/filepicker/AbstractFilePickerFragment.java">AbstractFilePickerFragment</a>.</p>
|
||||
|
||||
<p>Since this example will be browsing the SD-card, I will extend from the built-in FilePickerFragment.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">CustomLayoutFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param parent Containing view</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param viewType which the ViewHolder will contain. Will be one of:</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * [VIEWTYPE_HEADER, VIEWTYPE_CHECKABLE, VIEWTYPE_DIR]. It is OK, and even expected, to use the same</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * layout for VIEWTYPE_HEADER and VIEWTYPE_DIR.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return a view holder for a file or directory (the difference is presence of checkbox).</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> RecyclerView<span style="color: #666666">.</span><span style="color: #4070a0">ViewHolder</span> <span style="color: #06287e">onCreateViewHolder</span><span style="color: #666666">(</span>ViewGroup parent<span style="color: #666666">,</span> <span style="color: #902000">int</span> viewType<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
View v<span style="color: #666666">;</span>
|
||||
<span style="color: #007020; font-weight: bold">switch</span> <span style="color: #666666">(</span>viewType<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">case</span> LogicHandler<span style="color: #666666">.</span><span style="color: #4070a0">VIEWTYPE_HEADER</span><span style="color: #666666">:</span>
|
||||
v <span style="color: #666666">=</span> LayoutInflater<span style="color: #666666">.</span><span style="color: #4070a0">from</span><span style="color: #666666">(</span>getActivity<span style="color: #666666">()).</span><span style="color: #4070a0">inflate</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">layout</span><span style="color: #666666">.</span><span style="color: #4070a0">longer_listitem_dir</span><span style="color: #666666">,</span>
|
||||
parent<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">new</span> HeaderViewHolder<span style="color: #666666">(</span>v<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">case</span> LogicHandler<span style="color: #666666">.</span><span style="color: #4070a0">VIEWTYPE_CHECKABLE</span><span style="color: #666666">:</span>
|
||||
v <span style="color: #666666">=</span> LayoutInflater<span style="color: #666666">.</span><span style="color: #4070a0">from</span><span style="color: #666666">(</span>getActivity<span style="color: #666666">()).</span><span style="color: #4070a0">inflate</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">layout</span><span style="color: #666666">.</span><span style="color: #4070a0">longer_listitem_checkable</span><span style="color: #666666">,</span>
|
||||
parent<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">new</span> CheckableViewHolder<span style="color: #666666">(</span>v<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">case</span> LogicHandler<span style="color: #666666">.</span><span style="color: #4070a0">VIEWTYPE_DIR</span><span style="color: #666666">:</span>
|
||||
<span style="color: #007020; font-weight: bold">default</span><span style="color: #666666">:</span>
|
||||
v <span style="color: #666666">=</span> LayoutInflater<span style="color: #666666">.</span><span style="color: #4070a0">from</span><span style="color: #666666">(</span>getActivity<span style="color: #666666">()).</span><span style="color: #4070a0">inflate</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">layout</span><span style="color: #666666">.</span><span style="color: #4070a0">longer_listitem_dir</span><span style="color: #666666">,</span>
|
||||
parent<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">new</span> DirViewHolder<span style="color: #666666">(</span>v<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>And as always, to use your custom fragment you need a custom activity which loads it for you:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">CustomLayoutPickerActivity</span> <span style="color: #007020; font-weight: bold">extends</span> AbstractFilePickerActivity <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #06287e">CustomLayoutPickerActivity</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> AbstractFilePickerFragment<span style="color: #666666"><</span>File<span style="color: #666666">></span> <span style="color: #06287e">getFragment</span><span style="color: #666666">(</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> String startPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">int</span> mode<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowMultiple<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowCreateDir<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Load our custom fragment here</span>
|
||||
AbstractFilePickerFragment<span style="color: #666666"><</span>File<span style="color: #666666">></span> fragment <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">new</span> CustomLayoutFilePickerFragment<span style="color: #666666">();</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// startPath is allowed to be null. In that case, default folder should be SD-card and not "/"</span>
|
||||
fragment<span style="color: #666666">.</span><span style="color: #4070a0">setArgs</span><span style="color: #666666">(</span>startPath <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">?</span> startPath <span style="color: #666666">:</span> Environment<span style="color: #666666">.</span><span style="color: #4070a0">getExternalStorageDirectory</span><span style="color: #666666">().</span><span style="color: #4070a0">getPath</span><span style="color: #666666">(),</span>
|
||||
mode<span style="color: #666666">,</span> allowMultiple<span style="color: #666666">,</span> allowCreateDir<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> fragment<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/" title="Filter based on file extension">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Filter based on file extension
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/" title="Change the sort order">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Change the sort order
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,545 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Filter based on file extension - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Filter based on file extension
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Filter based on file extension </h1>
|
||||
|
||||
|
||||
|
||||
<p>By default, the SD-card picker will display all files in alphabetical order. But let’s say that your app can only handle a specific type of file, like <code>.txt</code>-files. Here’s a minimal example which will only display such files.</p>
|
||||
|
||||
<p>First, a convenience method to get the extension of files:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #60a0b0; font-style: italic">// File extension to filter on, including the initial dot.</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> <span style="color: #007020; font-weight: bold">static</span> <span style="color: #007020; font-weight: bold">final</span> String EXTENSION <span style="color: #666666">=</span> <span style="color: #4070a0">".txt"</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param file</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return The file extension. If file has no extension, it returns null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> String <span style="color: #06287e">getExtension</span><span style="color: #666666">(</span><span style="color: #555555; font-weight: bold">@NonNull</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
String path <span style="color: #666666">=</span> file<span style="color: #666666">.</span><span style="color: #4070a0">getPath</span><span style="color: #666666">();</span>
|
||||
<span style="color: #902000">int</span> i <span style="color: #666666">=</span> path<span style="color: #666666">.</span><span style="color: #4070a0">lastIndexOf</span><span style="color: #666666">(</span><span style="color: #4070a0">"."</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>i <span style="color: #666666"><</span> <span style="color: #40a070">0</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> path<span style="color: #666666">.</span><span style="color: #4070a0">substring</span><span style="color: #666666">(</span>i<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>The decision to display files or not is done with the <code>isItemVisible</code> method. Just add a check for the file-extension:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">isItemVisible</span><span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">final</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// simplified behavior (see below full code)</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// return isDir(file) || (mode == MODE_FILE || mode == MODE_FILE_AND_DIR);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(!</span>isDir<span style="color: #666666">(</span>file<span style="color: #666666">)</span> <span style="color: #666666">&&</span> <span style="color: #666666">(</span>mode <span style="color: #666666">==</span> MODE_FILE <span style="color: #666666">||</span> mode <span style="color: #666666">==</span> MODE_FILE_AND_DIR<span style="color: #666666">))</span> <span style="color: #666666">{</span>
|
||||
String ext <span style="color: #666666">=</span> getExtension<span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> ext <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> EXTENSION<span style="color: #666666">.</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>ext<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> isDir<span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="before-and-after">Before and After</h3>
|
||||
|
||||
<p><img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/filter_before.png" width="30%" alt="Before"/>
|
||||
<img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/filter_after.png" width="30%" alt="After"/></p>
|
||||
|
||||
<h3 id="full-fragment-code">Full Fragment code</h3>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerFragment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">FilteredFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// File extension to filter on</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> <span style="color: #007020; font-weight: bold">static</span> <span style="color: #007020; font-weight: bold">final</span> String EXTENSION <span style="color: #666666">=</span> <span style="color: #4070a0">".txt"</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param file</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return The file extension. If file has no extension, it returns null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> String <span style="color: #06287e">getExtension</span><span style="color: #666666">(</span><span style="color: #555555; font-weight: bold">@NonNull</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
String path <span style="color: #666666">=</span> file<span style="color: #666666">.</span><span style="color: #4070a0">getPath</span><span style="color: #666666">();</span>
|
||||
<span style="color: #902000">int</span> i <span style="color: #666666">=</span> path<span style="color: #666666">.</span><span style="color: #4070a0">lastIndexOf</span><span style="color: #666666">(</span><span style="color: #4070a0">"."</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>i <span style="color: #666666"><</span> <span style="color: #40a070">0</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> path<span style="color: #666666">.</span><span style="color: #4070a0">substring</span><span style="color: #666666">(</span>i<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">isItemVisible</span><span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">final</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #902000">boolean</span> ret <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">isItemVisible</span><span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>ret <span style="color: #666666">&&</span> <span style="color: #666666">!</span>isDir<span style="color: #666666">(</span>file<span style="color: #666666">)</span> <span style="color: #666666">&&</span> <span style="color: #666666">(</span>mode <span style="color: #666666">==</span> MODE_FILE <span style="color: #666666">||</span> mode <span style="color: #666666">==</span> MODE_FILE_AND_DIR<span style="color: #666666">))</span> <span style="color: #666666">{</span>
|
||||
String ext <span style="color: #666666">=</span> getExtension<span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> ext <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> EXTENSION<span style="color: #666666">.</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>ext<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> ret<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/" title="Override the back button">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Override the back button
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/" title="Custom item layout">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Custom item layout
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,462 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Examples - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
<link href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/index.xml" rel="alternate" type="application/rss+xml" title="NoNonsense FilePicker" />
|
||||
<link href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/index.xml" rel="feed" type="application/rss+xml" title="NoNonsense FilePicker" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Example
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Pages in Example</h1>
|
||||
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/" title="Standalone fragment">
|
||||
<h2>Standalone fragment</h2>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
To use the fragment together with an existing toolbar/action bar, a few things should be overridden. Here’s a minimal example where the toolbar is intercepted from being set as the main toolbar. The menu creation is also intercepted and populates the toolbar directly. public class StandaloneFilePickerFragment extends FilePickerFragment { protected Toolbar mToolbar; @Override protected void setupToolbar(Toolbar toolbar) { // Prevent it from being set as main toolbar by NOT calling super.setupToolbar().
|
||||
|
||||
<hr>
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/" title="Override selection behavior">
|
||||
<h2>Override selection behavior</h2>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
New in 2.4.0 are overridable methods to handle UI-interactions. The following methods are now available for augmentation: onClickOK, handles ok button. onClickCancel, handles cancel button. onClickHeader, handles clicks on “..”. onClickDir, handles clicks on non-selectable items (usually directories). onLongClickDir, handles long clicks on non-selectable items. onClickCheckable, handles clicks on selectable items. onLongClickCheckable, handles long clicks on selectable items. onClickCheckBox, handles clicks on the checkbox of selectable items. Please see the existing implementations before you override any of them.
|
||||
|
||||
<hr>
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/" title="Override the back button">
|
||||
<h2>Override the back button</h2>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
In case you want the back button to navigate the hierarchy instead of instantly exiting the activity, this is one approach you might take. Create an activity which overrides the back button and loads a custom fragment package com.nononsenseapps.filepicker.examples.backbutton; import android.os.Environment; import com.nononsenseapps.filepicker.AbstractFilePickerFragment; import com.nononsenseapps.filepicker.FilePickerActivity; import java.io.File; public class BackHandlingFilePickerActivity extends FilePickerActivity { /** * Need access to the fragment */ BackHandlingFilePickerFragment currentFragment; /** * Return a copy of the new fragment and set the variable above.
|
||||
|
||||
<hr>
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/" title="Filter based on file extension">
|
||||
<h2>Filter based on file extension</h2>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
By default, the SD-card picker will display all files in alphabetical order. But let’s say that your app can only handle a specific type of file, like .txt-files. Here’s a minimal example which will only display such files. First, a convenience method to get the extension of files: // File extension to filter on, including the initial dot. private static final String EXTENSION = ".txt"; /** * * @param file * @return The file extension.
|
||||
|
||||
<hr>
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/" title="Custom item layout">
|
||||
<h2>Custom item layout</h2>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
Say you want to browse some files which have really long names. By default, filenames will be cut if they exceed one line in width like ThisIsAReallyLongFi…. What if we really wanted it show like in this image? The behavior of the text is defined in the listitem layouts: nnf_filepicker_listitem_checkable and nnf_filepicker_listitem_dir. There are two kinds of layouts, one with a checkbox to allow selection, and one without a checkbox. The second one is also used for the special header item ..
|
||||
|
||||
<hr>
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/" title="Change the sort order">
|
||||
<h2>Change the sort order</h2>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
By default, the SD-card picker will display all files in alphabetical order. But what if you want a different sort-order? You can override the sorting by overriding the compareFiles-method: @Override protected int compareFiles(File lhs, File rhs) { if (lhs.isDirectory() && !rhs.isDirectory()) { return -1; } else if (rhs.isDirectory() && !lhs.isDirectory()) { return 1; } // This was the previous behaviour for all file-file comparisons. Now it's // only done if the files have the same extension, or no extension.
|
||||
|
||||
<hr>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = '';
|
||||
var repo_id = '';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,594 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Examples on NoNonsense FilePicker</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/</link>
|
||||
<description>Recent content in Examples on NoNonsense FilePicker</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 16 Jul 2016 17:36:40 +0200</lastBuildDate>
|
||||
<atom:link href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Standalone fragment</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:36:40 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/</guid>
|
||||
<description><p>To use the fragment together with an existing toolbar/action bar, a few things should be overridden.</p>
|
||||
|
||||
<p>Here&rsquo;s a minimal example where the toolbar is intercepted from being set as the main toolbar. The menu creation is also intercepted and populates the toolbar directly.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">StandaloneFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">protected</span> Toolbar mToolbar<span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">void</span> <span style="color: #06287e">setupToolbar</span><span style="color: #666666">(</span>Toolbar toolbar<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Prevent it from being set as main toolbar by NOT calling super.setupToolbar().</span>
|
||||
mToolbar <span style="color: #666666">=</span> toolbar<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onCreateOptionsMenu</span><span style="color: #666666">(</span>Menu menu<span style="color: #666666">,</span> MenuInflater inflater<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Populate the toolbar with the menu items instead of the action bar.</span>
|
||||
mToolbar<span style="color: #666666">.</span><span style="color: #4070a0">inflateMenu</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">menu</span><span style="color: #666666">.</span><span style="color: #4070a0">picker_actions</span><span style="color: #666666">);</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// Set a menu listener on the toolbar with calls the regular onOptionsItemSelected method.</span>
|
||||
mToolbar<span style="color: #666666">.</span><span style="color: #4070a0">setOnMenuItemClickListener</span><span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">new</span> Toolbar<span style="color: #666666">.</span><span style="color: #4070a0">OnMenuItemClickListener</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">onMenuItemClick</span><span style="color: #666666">(</span>MenuItem item<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> onOptionsItemSelected<span style="color: #666666">(</span>item<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">});</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// This is usually handled in onCreateOptions so do it here instead.</span>
|
||||
MenuItem item <span style="color: #666666">=</span> mToolbar<span style="color: #666666">.</span><span style="color: #4070a0">getMenu</span><span style="color: #666666">().</span><span style="color: #4070a0">findItem</span><span style="color: #666666">(</span>com<span style="color: #666666">.</span><span style="color: #4070a0">nononsenseapps</span><span style="color: #666666">.</span><span style="color: #4070a0">filepicker</span><span style="color: #666666">.</span><span style="color: #4070a0">R</span><span style="color: #666666">.</span><span style="color: #4070a0">id</span><span style="color: #666666">.</span><span style="color: #4070a0">nnf_action_createdir</span><span style="color: #666666">);</span>
|
||||
item<span style="color: #666666">.</span><span style="color: #4070a0">setVisible</span><span style="color: #666666">(</span>allowCreateDir<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Override selection behavior</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:35:01 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/</guid>
|
||||
<description>
|
||||
|
||||
<p>New in <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/releases/tag/v2.4.0">2.4.0</a> are overridable methods to handle UI-interactions. The following methods are now available for augmentation:</p>
|
||||
|
||||
<ul>
|
||||
<li>onClickOK, handles ok button.</li>
|
||||
<li>onClickCancel, handles cancel button.</li>
|
||||
<li>onClickHeader, handles clicks on &ldquo;..&rdquo;.</li>
|
||||
<li>onClickDir, handles clicks on non-selectable items (usually directories).</li>
|
||||
<li>onLongClickDir, handles long clicks on non-selectable items.</li>
|
||||
<li>onClickCheckable, handles clicks on selectable items.</li>
|
||||
<li>onLongClickCheckable, handles long clicks on selectable items.</li>
|
||||
<li>onClickCheckBox, handles clicks on the checkbox of selectable items.</li>
|
||||
</ul>
|
||||
|
||||
<p>Please see the existing implementations before you override any of them.</p>
|
||||
|
||||
<h2 id="simple-example-make-clicks-instantly-select-items">Simple example, make clicks instantly select items</h2>
|
||||
|
||||
<p>As asked in <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48">#48</a>, what if the picker is configured for selecting a single file and you want a click on that to instantly return the result. The default implementation will mark the item as selected, and then the user is required to press the OK button. This small change will make the operation a single click action, returning instantly once the user selects something.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">SingleFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onClickCheckable</span><span style="color: #666666">(</span>View v<span style="color: #666666">,</span> CheckableViewHolder vh<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(!</span>allowMultiple<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Clear is necessary, in case user clicked some checkbox directly</span>
|
||||
mCheckedItems<span style="color: #666666">.</span><span style="color: #4070a0">clear</span><span style="color: #666666">();</span>
|
||||
mCheckedItems<span style="color: #666666">.</span><span style="color: #4070a0">add</span><span style="color: #666666">(</span>vh<span style="color: #666666">.</span><span style="color: #4070a0">file</span><span style="color: #666666">);</span>
|
||||
onClickOk<span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">onClickCheckable</span><span style="color: #666666">(</span>v<span style="color: #666666">,</span> vh<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>Now the astute reader might wonder, if my filepicker is only going to be used for selecting single files, why not just do:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onClickCheckable</span><span style="color: #666666">(</span>View v<span style="color: #666666">,</span> CheckableViewHolder vh<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">onClickCheckable</span><span style="color: #666666">(</span>v<span style="color: #666666">,</span> vh<span style="color: #666666">);</span>
|
||||
onClickOk<span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>The reason is that the default implementation will animate the checkbox being selected on press. If you are closing the picker directly once the user selects something, you are basically animating something which isn&rsquo;t going to be seen and thus you are wasting (not that much) resources. Better to not animate at all in that case.</p>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Override the back button</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:33:43 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/</guid>
|
||||
<description>
|
||||
|
||||
<p>In case you want the back button to navigate the hierarchy instead of
|
||||
instantly exiting the activity, this is one approach you might take.</p>
|
||||
|
||||
<h2 id="create-an-activity-which-overrides-the-back-button-and-loads-a-custom-fragment">Create an activity which overrides the back button and loads a custom fragment</h2>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><code><span></span><span style="color: #007020; font-weight: bold">package</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.examples.backbutton</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">android.os.Environment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.AbstractFilePickerFragment</span><span style="color: #666666">;</span>
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerActivity</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">BackHandlingFilePickerActivity</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerActivity <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Need access to the fragment</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
BackHandlingFilePickerFragment currentFragment<span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Return a copy of the new fragment and set the variable above.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> AbstractFilePickerFragment<span style="color: #666666">&lt;</span>File<span style="color: #666666">&gt;</span> <span style="color: #06287e">getFragment</span><span style="color: #666666">(</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> String startPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">int</span> mode<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowMultiple<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowDirCreate<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowExistingFile<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> singleClick<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// startPath is allowed to be null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// In that case, default folder should be SD-card and not &quot;/&quot;</span>
|
||||
String path <span style="color: #666666">=</span> <span style="color: #666666">(</span>startPath <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">?</span> startPath
|
||||
<span style="color: #666666">:</span> Environment<span style="color: #666666">.</span><span style="color: #4070a0">getExternalStorageDirectory</span><span style="color: #666666">().</span><span style="color: #4070a0">getPath</span><span style="color: #666666">());</span>
|
||||
|
||||
currentFragment <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">new</span> BackHandlingFilePickerFragment<span style="color: #666666">();</span>
|
||||
currentFragment<span style="color: #666666">.</span><span style="color: #4070a0">setArgs</span><span style="color: #666666">(</span>path<span style="color: #666666">,</span> mode<span style="color: #666666">,</span> allowMultiple<span style="color: #666666">,</span> allowDirCreate<span style="color: #666666">,</span>
|
||||
allowExistingFile<span style="color: #666666">,</span> singleClick<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> currentFragment<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Override the back-button.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onBackPressed</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// If at top most level, normal behaviour</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>currentFragment<span style="color: #666666">.</span><span style="color: #4070a0">isBackTop</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">onBackPressed</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Else go up</span>
|
||||
currentFragment<span style="color: #666666">.</span><span style="color: #4070a0">goUp</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
<h2 id="in-your-custom-fragment-implement-the-goup-and-isbacktop-methods">In your custom fragment, implement the goUp and isBackTop methods</h2>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><code><span></span><span style="color: #007020; font-weight: bold">package</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.examples.backbutton</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerFragment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">BackHandlingFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * For consistency, the top level the back button checks against should be the start path.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * But it will fall back on /.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> File <span style="color: #06287e">getBackTop</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> getPath<span style="color: #666666">(</span>getArguments<span style="color: #666666">().</span><span style="color: #4070a0">getString</span><span style="color: #666666">(</span>KEY_START_PATH<span style="color: #666666">,</span> <span style="color: #4070a0">&quot;/&quot;</span><span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return true if the current path is the startpath or /</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">isBackTop</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">0</span> <span style="color: #666666">==</span> compareFiles<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">,</span> getBackTop<span style="color: #666666">())</span> <span style="color: #666666">||</span>
|
||||
<span style="color: #40a070">0</span> <span style="color: #666666">==</span> compareFiles<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">new</span> File<span style="color: #666666">(</span><span style="color: #4070a0">&quot;/&quot;</span><span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Go up on level, same as pressing on &quot;..&quot;.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">goUp</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
mCurrentPath <span style="color: #666666">=</span> getParent<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">);</span>
|
||||
mCheckedItems<span style="color: #666666">.</span><span style="color: #4070a0">clear</span><span style="color: #666666">();</span>
|
||||
mCheckedVisibleViewHolders<span style="color: #666666">.</span><span style="color: #4070a0">clear</span><span style="color: #666666">();</span>
|
||||
refresh<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
<h2 id="example-manifest">Example manifest</h2>
|
||||
|
||||
<p>Make sure <code>android-theme</code> points to the correct theme.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><code><span></span><span style="color: #062873; font-weight: bold">&lt;manifest</span> <span style="color: #4070a0">xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;</span>
|
||||
<span style="color: #4070a0">package=&quot;com.nononsenseapps.filepicker.examples&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;uses-permission</span> <span style="color: #4070a0">android:name=&quot;android.permission.READ_EXTERNAL_STORAGE&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
<span style="color: #60a0b0; font-style: italic">&lt;!-- Only needed to create sub directories. --&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;uses-permission</span> <span style="color: #4070a0">android:name=&quot;android.permission.WRITE_EXTERNAL_STORAGE&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;application</span>
|
||||
<span style="color: #4070a0">android:allowBackup=&quot;true&quot;</span>
|
||||
<span style="color: #4070a0">android:icon=&quot;@mipmap/ic_launcher&quot;</span>
|
||||
<span style="color: #4070a0">android:label=&quot;@string/app_name&quot;</span>
|
||||
<span style="color: #4070a0">android:supportsRtl=&quot;true&quot;</span>
|
||||
<span style="color: #4070a0">android:theme=&quot;@style/FilePickerTheme&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;activity</span>
|
||||
<span style="color: #4070a0">android:name=&quot;.backbutton.BackHandlingFilePickerActivity&quot;</span>
|
||||
<span style="color: #4070a0">android:label=&quot;Override back button&quot;</span>
|
||||
<span style="color: #4070a0">android:theme=&quot;@style/FilePickerTheme&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;/activity&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;/application&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;/manifest&gt;</span>
|
||||
</code></pre></div>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Filter based on file extension</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:32:07 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/</guid>
|
||||
<description>
|
||||
|
||||
<p>By default, the SD-card picker will display all files in alphabetical order. But let&rsquo;s say that your app can only handle a specific type of file, like <code>.txt</code>-files. Here&rsquo;s a minimal example which will only display such files.</p>
|
||||
|
||||
<p>First, a convenience method to get the extension of files:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #60a0b0; font-style: italic">// File extension to filter on, including the initial dot.</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> <span style="color: #007020; font-weight: bold">static</span> <span style="color: #007020; font-weight: bold">final</span> String EXTENSION <span style="color: #666666">=</span> <span style="color: #4070a0">&quot;.txt&quot;</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param file</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return The file extension. If file has no extension, it returns null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> String <span style="color: #06287e">getExtension</span><span style="color: #666666">(</span><span style="color: #555555; font-weight: bold">@NonNull</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
String path <span style="color: #666666">=</span> file<span style="color: #666666">.</span><span style="color: #4070a0">getPath</span><span style="color: #666666">();</span>
|
||||
<span style="color: #902000">int</span> i <span style="color: #666666">=</span> path<span style="color: #666666">.</span><span style="color: #4070a0">lastIndexOf</span><span style="color: #666666">(</span><span style="color: #4070a0">&quot;.&quot;</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>i <span style="color: #666666">&lt;</span> <span style="color: #40a070">0</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> path<span style="color: #666666">.</span><span style="color: #4070a0">substring</span><span style="color: #666666">(</span>i<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>The decision to display files or not is done with the <code>isItemVisible</code> method. Just add a check for the file-extension:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">isItemVisible</span><span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">final</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// simplified behavior (see below full code)</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// return isDir(file) || (mode == MODE_FILE || mode == MODE_FILE_AND_DIR);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(!</span>isDir<span style="color: #666666">(</span>file<span style="color: #666666">)</span> <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">(</span>mode <span style="color: #666666">==</span> MODE_FILE <span style="color: #666666">||</span> mode <span style="color: #666666">==</span> MODE_FILE_AND_DIR<span style="color: #666666">))</span> <span style="color: #666666">{</span>
|
||||
String ext <span style="color: #666666">=</span> getExtension<span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> ext <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> EXTENSION<span style="color: #666666">.</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>ext<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> isDir<span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="before-and-after">Before and After</h3>
|
||||
|
||||
<p><img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/filter_before.png" width="30%" alt="Before"/>
|
||||
<img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/filter_after.png" width="30%" alt="After"/></p>
|
||||
|
||||
<h3 id="full-fragment-code">Full Fragment code</h3>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerFragment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">FilteredFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// File extension to filter on</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> <span style="color: #007020; font-weight: bold">static</span> <span style="color: #007020; font-weight: bold">final</span> String EXTENSION <span style="color: #666666">=</span> <span style="color: #4070a0">&quot;.txt&quot;</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param file</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return The file extension. If file has no extension, it returns null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> String <span style="color: #06287e">getExtension</span><span style="color: #666666">(</span><span style="color: #555555; font-weight: bold">@NonNull</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
String path <span style="color: #666666">=</span> file<span style="color: #666666">.</span><span style="color: #4070a0">getPath</span><span style="color: #666666">();</span>
|
||||
<span style="color: #902000">int</span> i <span style="color: #666666">=</span> path<span style="color: #666666">.</span><span style="color: #4070a0">lastIndexOf</span><span style="color: #666666">(</span><span style="color: #4070a0">&quot;.&quot;</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>i <span style="color: #666666">&lt;</span> <span style="color: #40a070">0</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> path<span style="color: #666666">.</span><span style="color: #4070a0">substring</span><span style="color: #666666">(</span>i<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">isItemVisible</span><span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">final</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #902000">boolean</span> ret <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">isItemVisible</span><span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>ret <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">!</span>isDir<span style="color: #666666">(</span>file<span style="color: #666666">)</span> <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">(</span>mode <span style="color: #666666">==</span> MODE_FILE <span style="color: #666666">||</span> mode <span style="color: #666666">==</span> MODE_FILE_AND_DIR<span style="color: #666666">))</span> <span style="color: #666666">{</span>
|
||||
String ext <span style="color: #666666">=</span> getExtension<span style="color: #666666">(</span>file<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> ext <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> EXTENSION<span style="color: #666666">.</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>ext<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> ret<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Custom item layout</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:21:28 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/</guid>
|
||||
<description>
|
||||
|
||||
<p>Say you want to browse some files which have really long names. By default, filenames will be cut if they exceed one line in width like <code>ThisIsAReallyLongFi...</code>. What if we really wanted it show like in this image?</p>
|
||||
|
||||
<p><img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/itemlayout_longfilename.png" alt="Example of a long filename" /></p>
|
||||
|
||||
<p>The behavior of the text is defined in the listitem layouts:
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_checkable.xml">nnf_filepicker_listitem_checkable</a>
|
||||
and
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_dir.xml">nnf_filepicker_listitem_dir</a>.</p>
|
||||
|
||||
<p>There are two kinds of layouts, one with a checkbox to allow selection, and one without a checkbox. The second one is also used for the special header item <code>..</code> though you could of course have a special layout for that if you wanted.</p>
|
||||
|
||||
<h3 id="layouts">Layouts</h3>
|
||||
|
||||
<p>Let&rsquo;s create some new layouts which will support longer filenames as follows:</p>
|
||||
|
||||
<p><strong>longer_listitem_checkable.xml</strong></p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;LinearLayout</span> <span style="color: #4070a0">xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;</span>
|
||||
<span style="color: #4070a0">xmlns:tools=&quot;http://schemas.android.com/tools&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;match_parent&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;wrap_content&quot;</span>
|
||||
<span style="color: #4070a0">android:background=&quot;?android:selectableItemBackground&quot;</span>
|
||||
<span style="color: #4070a0">android:minHeight=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:orientation=&quot;horizontal&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>
|
||||
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">&lt;!--suppress AndroidDomInspection --&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;ImageView</span>
|
||||
<span style="color: #4070a0">android:id=&quot;@+id/item_icon&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:adjustViewBounds=&quot;true&quot;</span>
|
||||
<span style="color: #4070a0">android:scaleType=&quot;fitCenter&quot;</span>
|
||||
<span style="color: #4070a0">android:src=&quot;@drawable/nnf_ic_file_folder&quot;</span>
|
||||
<span style="color: #4070a0">android:tint=&quot;?attr/colorAccent&quot;</span>
|
||||
<span style="color: #4070a0">android:visibility=&quot;visible&quot;</span>
|
||||
<span style="color: #4070a0">tools:ignore=&quot;ContentDescription&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;TextView</span>
|
||||
<span style="color: #4070a0">android:id=&quot;@android:id/text1&quot;</span>
|
||||
<span style="color: #4070a0">style=&quot;?android:textAppearanceLarge&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;0dp&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;wrap_content&quot;</span>
|
||||
<span style="color: #4070a0">android:minHeight=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_weight=&quot;1&quot;</span>
|
||||
<span style="color: #4070a0">android:ellipsize=&quot;end&quot;</span>
|
||||
<span style="color: #4070a0">android:gravity=&quot;center_vertical&quot;</span>
|
||||
<span style="color: #4070a0">android:maxLines=&quot;4&quot;</span>
|
||||
<span style="color: #4070a0">android:padding=&quot;8dp&quot;</span><span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;CheckBox</span>
|
||||
<span style="color: #4070a0">android:id=&quot;@+id/checkbox&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;wrap_content&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;match_parent&quot;</span>
|
||||
<span style="color: #4070a0">android:paddingEnd=&quot;8dp&quot;</span>
|
||||
<span style="color: #4070a0">android:paddingRight=&quot;8dp&quot;</span>
|
||||
<span style="color: #4070a0">tools:ignore=&quot;RtlSymmetry&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;/LinearLayout&gt;</span>
|
||||
</pre></div>
|
||||
|
||||
<p><strong>longer_listitem_dir.xml</strong></p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;LinearLayout</span> <span style="color: #4070a0">xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;</span>
|
||||
<span style="color: #4070a0">xmlns:tools=&quot;http://schemas.android.com/tools&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;match_parent&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;wrap_content&quot;</span>
|
||||
<span style="color: #4070a0">android:background=&quot;?android:selectableItemBackground&quot;</span>
|
||||
<span style="color: #4070a0">android:minHeight=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:orientation=&quot;horizontal&quot;</span>
|
||||
<span style="color: #062873; font-weight: bold">&gt;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">&lt;!--suppress AndroidDomInspection --&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;ImageView</span>
|
||||
<span style="color: #4070a0">android:id=&quot;@+id/item_icon&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:adjustViewBounds=&quot;true&quot;</span>
|
||||
<span style="color: #4070a0">android:scaleType=&quot;center&quot;</span>
|
||||
<span style="color: #4070a0">android:src=&quot;@drawable/nnf_ic_file_folder&quot;</span>
|
||||
<span style="color: #4070a0">android:tint=&quot;?attr/colorAccent&quot;</span>
|
||||
<span style="color: #4070a0">android:visibility=&quot;visible&quot;</span>
|
||||
<span style="color: #4070a0">tools:ignore=&quot;ContentDescription&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold">&lt;TextView</span>
|
||||
<span style="color: #4070a0">android:id=&quot;@android:id/text1&quot;</span>
|
||||
<span style="color: #4070a0">style=&quot;?android:textAppearanceLarge&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_width=&quot;0dp&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_height=&quot;wrap_content&quot;</span>
|
||||
<span style="color: #4070a0">android:minHeight=&quot;?android:listPreferredItemHeight&quot;</span>
|
||||
<span style="color: #4070a0">android:layout_weight=&quot;1&quot;</span>
|
||||
<span style="color: #4070a0">android:ellipsize=&quot;end&quot;</span>
|
||||
<span style="color: #4070a0">android:gravity=&quot;center_vertical&quot;</span>
|
||||
<span style="color: #4070a0">android:maxLines=&quot;4&quot;</span>
|
||||
<span style="color: #4070a0">android:padding=&quot;8dp&quot;</span><span style="color: #062873; font-weight: bold">/&gt;</span>
|
||||
<span style="color: #062873; font-weight: bold">&lt;/LinearLayout&gt;</span>
|
||||
</pre></div>
|
||||
|
||||
<p>Note that I defined the TextViews to have a maximum of 4 lines (actual number is up to you), and a minimum height of <code>android:listPreferredItemHeight</code> (this I recommend, otherwise it looks wonky and off-center). And just be clear, the <em>ids</em> of these fields must be <code>@+id/item_icon</code>, <code>@android:id/text1</code>, and <code>@+id/checkbox</code>, or the code WILL crash on you.</p>
|
||||
|
||||
<h3 id="code">Code</h3>
|
||||
|
||||
<p>To use the new layouts, you need to override the <code>onCreateViewHolder</code> method in
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/java/com/nononsenseapps/filepicker/AbstractFilePickerFragment.java">AbstractFilePickerFragment</a>.</p>
|
||||
|
||||
<p>Since this example will be browsing the SD-card, I will extend from the built-in FilePickerFragment.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">CustomLayoutFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param parent Containing view</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param viewType which the ViewHolder will contain. Will be one of:</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * [VIEWTYPE_HEADER, VIEWTYPE_CHECKABLE, VIEWTYPE_DIR]. It is OK, and even expected, to use the same</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * layout for VIEWTYPE_HEADER and VIEWTYPE_DIR.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return a view holder for a file or directory (the difference is presence of checkbox).</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> RecyclerView<span style="color: #666666">.</span><span style="color: #4070a0">ViewHolder</span> <span style="color: #06287e">onCreateViewHolder</span><span style="color: #666666">(</span>ViewGroup parent<span style="color: #666666">,</span> <span style="color: #902000">int</span> viewType<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
View v<span style="color: #666666">;</span>
|
||||
<span style="color: #007020; font-weight: bold">switch</span> <span style="color: #666666">(</span>viewType<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">case</span> LogicHandler<span style="color: #666666">.</span><span style="color: #4070a0">VIEWTYPE_HEADER</span><span style="color: #666666">:</span>
|
||||
v <span style="color: #666666">=</span> LayoutInflater<span style="color: #666666">.</span><span style="color: #4070a0">from</span><span style="color: #666666">(</span>getActivity<span style="color: #666666">()).</span><span style="color: #4070a0">inflate</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">layout</span><span style="color: #666666">.</span><span style="color: #4070a0">longer_listitem_dir</span><span style="color: #666666">,</span>
|
||||
parent<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">new</span> HeaderViewHolder<span style="color: #666666">(</span>v<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">case</span> LogicHandler<span style="color: #666666">.</span><span style="color: #4070a0">VIEWTYPE_CHECKABLE</span><span style="color: #666666">:</span>
|
||||
v <span style="color: #666666">=</span> LayoutInflater<span style="color: #666666">.</span><span style="color: #4070a0">from</span><span style="color: #666666">(</span>getActivity<span style="color: #666666">()).</span><span style="color: #4070a0">inflate</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">layout</span><span style="color: #666666">.</span><span style="color: #4070a0">longer_listitem_checkable</span><span style="color: #666666">,</span>
|
||||
parent<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">new</span> CheckableViewHolder<span style="color: #666666">(</span>v<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">case</span> LogicHandler<span style="color: #666666">.</span><span style="color: #4070a0">VIEWTYPE_DIR</span><span style="color: #666666">:</span>
|
||||
<span style="color: #007020; font-weight: bold">default</span><span style="color: #666666">:</span>
|
||||
v <span style="color: #666666">=</span> LayoutInflater<span style="color: #666666">.</span><span style="color: #4070a0">from</span><span style="color: #666666">(</span>getActivity<span style="color: #666666">()).</span><span style="color: #4070a0">inflate</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">layout</span><span style="color: #666666">.</span><span style="color: #4070a0">longer_listitem_dir</span><span style="color: #666666">,</span>
|
||||
parent<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">new</span> DirViewHolder<span style="color: #666666">(</span>v<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>And as always, to use your custom fragment you need a custom activity which loads it for you:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">CustomLayoutPickerActivity</span> <span style="color: #007020; font-weight: bold">extends</span> AbstractFilePickerActivity <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #06287e">CustomLayoutPickerActivity</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> AbstractFilePickerFragment<span style="color: #666666">&lt;</span>File<span style="color: #666666">&gt;</span> <span style="color: #06287e">getFragment</span><span style="color: #666666">(</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> String startPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">int</span> mode<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowMultiple<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowCreateDir<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Load our custom fragment here</span>
|
||||
AbstractFilePickerFragment<span style="color: #666666">&lt;</span>File<span style="color: #666666">&gt;</span> fragment <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">new</span> CustomLayoutFilePickerFragment<span style="color: #666666">();</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// startPath is allowed to be null. In that case, default folder should be SD-card and not &quot;/&quot;</span>
|
||||
fragment<span style="color: #666666">.</span><span style="color: #4070a0">setArgs</span><span style="color: #666666">(</span>startPath <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">?</span> startPath <span style="color: #666666">:</span> Environment<span style="color: #666666">.</span><span style="color: #4070a0">getExternalStorageDirectory</span><span style="color: #666666">().</span><span style="color: #4070a0">getPath</span><span style="color: #666666">(),</span>
|
||||
mode<span style="color: #666666">,</span> allowMultiple<span style="color: #666666">,</span> allowCreateDir<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> fragment<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Change the sort order</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 17:10:46 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/</guid>
|
||||
<description>
|
||||
|
||||
<p>By default, the SD-card picker will display all files in alphabetical order. But what if you want a different sort-order?</p>
|
||||
|
||||
<p>You can override the sorting by overriding the <code>compareFiles</code>-method:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">int</span> <span style="color: #06287e">compareFiles</span><span style="color: #666666">(</span>File lhs<span style="color: #666666">,</span> File rhs<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">!</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">!</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// This was the previous behaviour for all file-file comparisons. Now it&#39;s</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// only done if the files have the same extension, or no extension.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">))</span> <span style="color: #666666">||</span>
|
||||
getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> lhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">().</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">());</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Otherwise, we sort on extension placing files with no extension last.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Both have extension, just compare extensions</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Left has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Right has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="before-and-after">Before and After</h3>
|
||||
|
||||
<p><img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/sorting_before.png" width="30%" alt="Before"/>
|
||||
<img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/sorting_after.png" width="30%" alt="After"/></p>
|
||||
|
||||
<h3 id="full-fragment-code">Full Fragment code</h3>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerFragment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">SortedFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param file</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return The file extension. If file has no extension, it returns null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> String <span style="color: #06287e">getExtension</span><span style="color: #666666">(</span><span style="color: #555555; font-weight: bold">@NonNull</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
String path <span style="color: #666666">=</span> file<span style="color: #666666">.</span><span style="color: #4070a0">getPath</span><span style="color: #666666">();</span>
|
||||
<span style="color: #902000">int</span> i <span style="color: #666666">=</span> path<span style="color: #666666">.</span><span style="color: #4070a0">lastIndexOf</span><span style="color: #666666">(</span><span style="color: #4070a0">&quot;.&quot;</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>i <span style="color: #666666">&lt;</span> <span style="color: #40a070">0</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> path<span style="color: #666666">.</span><span style="color: #4070a0">substring</span><span style="color: #666666">(</span>i<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Compare two files to determine their relative sort order. This follows the usual</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * comparison interface. Override to determine your own custom sort order.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param lhs File on the &quot;left-hand side&quot;</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param rhs File on the &quot;right-hand side&quot;</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return -1 if if lhs should be placed before rhs, 0 if they are equal,</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * and 1 if rhs should be placed before lhs</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">int</span> <span style="color: #06287e">compareFiles</span><span style="color: #666666">(</span>File lhs<span style="color: #666666">,</span> File rhs<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">!</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&amp;&amp;</span> <span style="color: #666666">!</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// This was the previous behaviour for all file-file comparisons. Now it&#39;s</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// only done if the files have the same extension, or no extension.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">))</span> <span style="color: #666666">||</span>
|
||||
getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> lhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">().</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">());</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Otherwise, we sort on extension placing files with no extension last.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&amp;&amp;</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Both have extension, just compare extensions</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Left has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Right has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -1,588 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Override the back button - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Override the back button
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Override the back button </h1>
|
||||
|
||||
|
||||
|
||||
<p>In case you want the back button to navigate the hierarchy instead of
|
||||
instantly exiting the activity, this is one approach you might take.</p>
|
||||
|
||||
<h2 id="create-an-activity-which-overrides-the-back-button-and-loads-a-custom-fragment">Create an activity which overrides the back button and loads a custom fragment</h2>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><code><span></span><span style="color: #007020; font-weight: bold">package</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.examples.backbutton</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">android.os.Environment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.AbstractFilePickerFragment</span><span style="color: #666666">;</span>
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerActivity</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">BackHandlingFilePickerActivity</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerActivity <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Need access to the fragment</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
BackHandlingFilePickerFragment currentFragment<span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Return a copy of the new fragment and set the variable above.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> AbstractFilePickerFragment<span style="color: #666666"><</span>File<span style="color: #666666">></span> <span style="color: #06287e">getFragment</span><span style="color: #666666">(</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> String startPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">int</span> mode<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowMultiple<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowDirCreate<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowExistingFile<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> singleClick<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// startPath is allowed to be null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// In that case, default folder should be SD-card and not "/"</span>
|
||||
String path <span style="color: #666666">=</span> <span style="color: #666666">(</span>startPath <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">?</span> startPath
|
||||
<span style="color: #666666">:</span> Environment<span style="color: #666666">.</span><span style="color: #4070a0">getExternalStorageDirectory</span><span style="color: #666666">().</span><span style="color: #4070a0">getPath</span><span style="color: #666666">());</span>
|
||||
|
||||
currentFragment <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">new</span> BackHandlingFilePickerFragment<span style="color: #666666">();</span>
|
||||
currentFragment<span style="color: #666666">.</span><span style="color: #4070a0">setArgs</span><span style="color: #666666">(</span>path<span style="color: #666666">,</span> mode<span style="color: #666666">,</span> allowMultiple<span style="color: #666666">,</span> allowDirCreate<span style="color: #666666">,</span>
|
||||
allowExistingFile<span style="color: #666666">,</span> singleClick<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> currentFragment<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Override the back-button.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onBackPressed</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// If at top most level, normal behaviour</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>currentFragment<span style="color: #666666">.</span><span style="color: #4070a0">isBackTop</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">onBackPressed</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Else go up</span>
|
||||
currentFragment<span style="color: #666666">.</span><span style="color: #4070a0">goUp</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
<h2 id="in-your-custom-fragment-implement-the-goup-and-isbacktop-methods">In your custom fragment, implement the goUp and isBackTop methods</h2>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><code><span></span><span style="color: #007020; font-weight: bold">package</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.examples.backbutton</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerFragment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">BackHandlingFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * For consistency, the top level the back button checks against should be the start path.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * But it will fall back on /.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> File <span style="color: #06287e">getBackTop</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> getPath<span style="color: #666666">(</span>getArguments<span style="color: #666666">().</span><span style="color: #4070a0">getString</span><span style="color: #666666">(</span>KEY_START_PATH<span style="color: #666666">,</span> <span style="color: #4070a0">"/"</span><span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return true if the current path is the startpath or /</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">isBackTop</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">0</span> <span style="color: #666666">==</span> compareFiles<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">,</span> getBackTop<span style="color: #666666">())</span> <span style="color: #666666">||</span>
|
||||
<span style="color: #40a070">0</span> <span style="color: #666666">==</span> compareFiles<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">new</span> File<span style="color: #666666">(</span><span style="color: #4070a0">"/"</span><span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Go up on level, same as pressing on "..".</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">goUp</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
mCurrentPath <span style="color: #666666">=</span> getParent<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">);</span>
|
||||
mCheckedItems<span style="color: #666666">.</span><span style="color: #4070a0">clear</span><span style="color: #666666">();</span>
|
||||
mCheckedVisibleViewHolders<span style="color: #666666">.</span><span style="color: #4070a0">clear</span><span style="color: #666666">();</span>
|
||||
refresh<span style="color: #666666">(</span>mCurrentPath<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
<h2 id="example-manifest">Example manifest</h2>
|
||||
|
||||
<p>Make sure <code>android-theme</code> points to the correct theme.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><code><span></span><span style="color: #062873; font-weight: bold"><manifest</span> <span style="color: #4070a0">xmlns:android="http://schemas.android.com/apk/res/android"</span>
|
||||
<span style="color: #4070a0">package="com.nononsenseapps.filepicker.examples"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><uses-permission</span> <span style="color: #4070a0">android:name="android.permission.READ_EXTERNAL_STORAGE"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
<span style="color: #60a0b0; font-style: italic"><!-- Only needed to create sub directories. --></span>
|
||||
<span style="color: #062873; font-weight: bold"><uses-permission</span> <span style="color: #4070a0">android:name="android.permission.WRITE_EXTERNAL_STORAGE"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><application</span>
|
||||
<span style="color: #4070a0">android:allowBackup="true"</span>
|
||||
<span style="color: #4070a0">android:icon="@mipmap/ic_launcher"</span>
|
||||
<span style="color: #4070a0">android:label="@string/app_name"</span>
|
||||
<span style="color: #4070a0">android:supportsRtl="true"</span>
|
||||
<span style="color: #4070a0">android:theme="@style/FilePickerTheme"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><activity</span>
|
||||
<span style="color: #4070a0">android:name=".backbutton.BackHandlingFilePickerActivity"</span>
|
||||
<span style="color: #4070a0">android:label="Override back button"</span>
|
||||
<span style="color: #4070a0">android:theme="@style/FilePickerTheme"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
<span style="color: #062873; font-weight: bold"></activity></span>
|
||||
<span style="color: #062873; font-weight: bold"></application></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"></manifest></span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/" title="Override selection behavior">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Override selection behavior
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/" title="Filter based on file extension">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Filter based on file extension
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,510 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Override selection behavior - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Override selection behavior
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Override selection behavior </h1>
|
||||
|
||||
|
||||
|
||||
<p>New in <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/releases/tag/v2.4.0">2.4.0</a> are overridable methods to handle UI-interactions. The following methods are now available for augmentation:</p>
|
||||
|
||||
<ul>
|
||||
<li>onClickOK, handles ok button.</li>
|
||||
<li>onClickCancel, handles cancel button.</li>
|
||||
<li>onClickHeader, handles clicks on “..”.</li>
|
||||
<li>onClickDir, handles clicks on non-selectable items (usually directories).</li>
|
||||
<li>onLongClickDir, handles long clicks on non-selectable items.</li>
|
||||
<li>onClickCheckable, handles clicks on selectable items.</li>
|
||||
<li>onLongClickCheckable, handles long clicks on selectable items.</li>
|
||||
<li>onClickCheckBox, handles clicks on the checkbox of selectable items.</li>
|
||||
</ul>
|
||||
|
||||
<p>Please see the existing implementations before you override any of them.</p>
|
||||
|
||||
<h2 id="simple-example-make-clicks-instantly-select-items">Simple example, make clicks instantly select items</h2>
|
||||
|
||||
<p>As asked in <a href="https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48">#48</a>, what if the picker is configured for selecting a single file and you want a click on that to instantly return the result. The default implementation will mark the item as selected, and then the user is required to press the OK button. This small change will make the operation a single click action, returning instantly once the user selects something.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">SingleFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onClickCheckable</span><span style="color: #666666">(</span>View v<span style="color: #666666">,</span> CheckableViewHolder vh<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(!</span>allowMultiple<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Clear is necessary, in case user clicked some checkbox directly</span>
|
||||
mCheckedItems<span style="color: #666666">.</span><span style="color: #4070a0">clear</span><span style="color: #666666">();</span>
|
||||
mCheckedItems<span style="color: #666666">.</span><span style="color: #4070a0">add</span><span style="color: #666666">(</span>vh<span style="color: #666666">.</span><span style="color: #4070a0">file</span><span style="color: #666666">);</span>
|
||||
onClickOk<span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">onClickCheckable</span><span style="color: #666666">(</span>v<span style="color: #666666">,</span> vh<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>Now the astute reader might wonder, if my filepicker is only going to be used for selecting single files, why not just do:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onClickCheckable</span><span style="color: #666666">(</span>View v<span style="color: #666666">,</span> CheckableViewHolder vh<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">.</span><span style="color: #4070a0">onClickCheckable</span><span style="color: #666666">(</span>v<span style="color: #666666">,</span> vh<span style="color: #666666">);</span>
|
||||
onClickOk<span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<p>The reason is that the default implementation will animate the checkbox being selected on press. If you are closing the picker directly once the user selects something, you are basically animating something which isn’t going to be seen and thus you are wasting (not that much) resources. Better to not animate at all in that case.</p>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/" title="Standalone fragment">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Standalone fragment
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/" title="Override the back button">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Override the back button
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,562 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Change the sort order - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Change the sort order
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Change the sort order </h1>
|
||||
|
||||
|
||||
|
||||
<p>By default, the SD-card picker will display all files in alphabetical order. But what if you want a different sort-order?</p>
|
||||
|
||||
<p>You can override the sorting by overriding the <code>compareFiles</code>-method:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">int</span> <span style="color: #06287e">compareFiles</span><span style="color: #666666">(</span>File lhs<span style="color: #666666">,</span> File rhs<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&&</span> <span style="color: #666666">!</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&&</span> <span style="color: #666666">!</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// This was the previous behaviour for all file-file comparisons. Now it's</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// only done if the files have the same extension, or no extension.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">))</span> <span style="color: #666666">||</span>
|
||||
getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> lhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">().</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">());</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Otherwise, we sort on extension placing files with no extension last.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Both have extension, just compare extensions</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Left has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Right has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="before-and-after">Before and After</h3>
|
||||
|
||||
<p><img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/sorting_before.png" width="30%" alt="Before"/>
|
||||
<img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/sorting_after.png" width="30%" alt="After"/></p>
|
||||
|
||||
<h3 id="full-fragment-code">Full Fragment code</h3>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">com.nononsenseapps.filepicker.FilePickerFragment</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">import</span> <span style="color: #0e84b5; font-weight: bold">java.io.File</span><span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">SortedFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param file</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return The file extension. If file has no extension, it returns null.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #007020; font-weight: bold">private</span> String <span style="color: #06287e">getExtension</span><span style="color: #666666">(</span><span style="color: #555555; font-weight: bold">@NonNull</span> File file<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
String path <span style="color: #666666">=</span> file<span style="color: #666666">.</span><span style="color: #4070a0">getPath</span><span style="color: #666666">();</span>
|
||||
<span style="color: #902000">int</span> i <span style="color: #666666">=</span> path<span style="color: #666666">.</span><span style="color: #4070a0">lastIndexOf</span><span style="color: #666666">(</span><span style="color: #4070a0">"."</span><span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>i <span style="color: #666666"><</span> <span style="color: #40a070">0</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> path<span style="color: #666666">.</span><span style="color: #4070a0">substring</span><span style="color: #666666">(</span>i<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">/**</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * Compare two files to determine their relative sort order. This follows the usual</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * comparison interface. Override to determine your own custom sort order.</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> *</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param lhs File on the "left-hand side"</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @param rhs File on the "right-hand side"</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * @return -1 if if lhs should be placed before rhs, 0 if they are equal,</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> * and 1 if rhs should be placed before lhs</span>
|
||||
<span style="color: #60a0b0; font-style: italic"> */</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">int</span> <span style="color: #06287e">compareFiles</span><span style="color: #666666">(</span>File lhs<span style="color: #666666">,</span> File rhs<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&&</span> <span style="color: #666666">!</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">()</span> <span style="color: #666666">&&</span> <span style="color: #666666">!</span>lhs<span style="color: #666666">.</span><span style="color: #4070a0">isDirectory</span><span style="color: #666666">())</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// This was the previous behaviour for all file-file comparisons. Now it's</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// only done if the files have the same extension, or no extension.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">equalsIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">))</span> <span style="color: #666666">||</span>
|
||||
getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">==</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> lhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">().</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>rhs<span style="color: #666666">.</span><span style="color: #4070a0">getName</span><span style="color: #666666">());</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Otherwise, we sort on extension placing files with no extension last.</span>
|
||||
<span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span> <span style="color: #666666">&&</span> getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Both have extension, just compare extensions</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">).</span><span style="color: #4070a0">compareToIgnoreCase</span><span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>rhs<span style="color: #666666">));</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>getExtension<span style="color: #666666">(</span>lhs<span style="color: #666666">)</span> <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Left has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #666666">-</span><span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Right has extension, place it first</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> <span style="color: #40a070">1</span><span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/" title="Custom item layout">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Custom item layout
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/" title="ChangeLog">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
ChangeLog
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,483 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>Standalone fragment - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Standalone fragment
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>Standalone fragment </h1>
|
||||
|
||||
<p>To use the fragment together with an existing toolbar/action bar, a few things should be overridden.</p>
|
||||
|
||||
<p>Here’s a minimal example where the toolbar is intercepted from being set as the main toolbar. The menu creation is also intercepted and populates the toolbar directly.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">StandaloneFilePickerFragment</span> <span style="color: #007020; font-weight: bold">extends</span> FilePickerFragment <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">protected</span> Toolbar mToolbar<span style="color: #666666">;</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">void</span> <span style="color: #06287e">setupToolbar</span><span style="color: #666666">(</span>Toolbar toolbar<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Prevent it from being set as main toolbar by NOT calling super.setupToolbar().</span>
|
||||
mToolbar <span style="color: #666666">=</span> toolbar<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">void</span> <span style="color: #06287e">onCreateOptionsMenu</span><span style="color: #666666">(</span>Menu menu<span style="color: #666666">,</span> MenuInflater inflater<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Populate the toolbar with the menu items instead of the action bar.</span>
|
||||
mToolbar<span style="color: #666666">.</span><span style="color: #4070a0">inflateMenu</span><span style="color: #666666">(</span>R<span style="color: #666666">.</span><span style="color: #4070a0">menu</span><span style="color: #666666">.</span><span style="color: #4070a0">picker_actions</span><span style="color: #666666">);</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// Set a menu listener on the toolbar with calls the regular onOptionsItemSelected method.</span>
|
||||
mToolbar<span style="color: #666666">.</span><span style="color: #4070a0">setOnMenuItemClickListener</span><span style="color: #666666">(</span><span style="color: #007020; font-weight: bold">new</span> Toolbar<span style="color: #666666">.</span><span style="color: #4070a0">OnMenuItemClickListener</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #902000">boolean</span> <span style="color: #06287e">onMenuItemClick</span><span style="color: #666666">(</span>MenuItem item<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> onOptionsItemSelected<span style="color: #666666">(</span>item<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">});</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// This is usually handled in onCreateOptions so do it here instead.</span>
|
||||
MenuItem item <span style="color: #666666">=</span> mToolbar<span style="color: #666666">.</span><span style="color: #4070a0">getMenu</span><span style="color: #666666">().</span><span style="color: #4070a0">findItem</span><span style="color: #666666">(</span>com<span style="color: #666666">.</span><span style="color: #4070a0">nononsenseapps</span><span style="color: #666666">.</span><span style="color: #4070a0">filepicker</span><span style="color: #666666">.</span><span style="color: #4070a0">R</span><span style="color: #666666">.</span><span style="color: #4070a0">id</span><span style="color: #666666">.</span><span style="color: #4070a0">nnf_action_createdir</span><span style="color: #666666">);</span>
|
||||
item<span style="color: #666666">.</span><span style="color: #4070a0">setVisible</span><span style="color: #666666">(</span>allowCreateDir<span style="color: #666666">);</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/" title="Override selection behavior">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Override selection behavior
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="icon" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " horiz-adv-x="512" d="" />
|
||||
<glyph unicode="" glyph-name="search" d="M661.333 341.334h-33.92l-11.733 11.733c41.813 48.427 66.987 111.36 66.987 180.267 0 153.173-124.16 277.333-277.333 277.333s-277.333-124.16-277.333-277.333 124.16-277.333 277.333-277.333c68.907 0 131.84 25.173 180.267 66.773l11.733-11.733v-33.707l213.333-212.907 63.573 63.573-212.907 213.333zM405.333 341.334c-106.027 0-192 85.973-192 192s85.973 192 192 192 192-85.973 192-192-85.973-192-192-192z" />
|
||||
<glyph unicode="" glyph-name="arrow-back" d="M853.333 469.334h-519.253l238.293 238.293-60.373 60.373-341.333-341.333 341.333-341.333 60.373 60.373-238.293 238.293h519.253v85.333z" />
|
||||
<glyph unicode="" glyph-name="chevron-right" d="M426.667 682.667l-60.373-60.373 195.627-195.627-195.627-195.627 60.373-60.373 256 256z" />
|
||||
<glyph unicode="" glyph-name="close" d="M810.667 664.96l-60.373 60.373-238.293-238.293-238.293 238.293-60.373-60.373 238.293-238.293-238.293-238.293 60.373-60.373 238.293 238.293 238.293-238.293 60.373 60.373-238.293 238.293z" />
|
||||
<glyph unicode="" glyph-name="menu" d="M128 170.667h768v85.333h-768v-85.333zM128 384h768v85.333h-768v-85.333zM128 682.667v-85.333h768v85.333h-768z" />
|
||||
<glyph unicode="" glyph-name="arrow-forward" d="M512 768l-60.373-60.373 238.293-238.293h-519.253v-85.333h519.253l-238.293-238.293 60.373-60.373 341.333 341.333z" />
|
||||
<glyph unicode="" glyph-name="twitter" d="M1024 744.249c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
|
||||
<glyph unicode="" glyph-name="github" d="M512.008 926.025c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" />
|
||||
<glyph unicode="" glyph-name="download" d="M810.667 554.667h-170.667v256h-256v-256h-170.667l298.667-298.667 298.667 298.667zM213.333 170.667v-85.333h597.333v85.333h-597.333z" />
|
||||
<glyph unicode="" glyph-name="star" d="M512 201.814l263.68-159.147-69.973 299.947 232.96 201.813-306.773 26.027-119.893 282.88-119.893-282.88-306.773-26.027 232.96-201.813-69.973-299.947z" />
|
||||
<glyph unicode="" glyph-name="warning" d="M554 340.667v172h-84v-172h84zM554 170.667v86h-84v-86h84zM42 42.667l470 810 470-810h-940z" />
|
||||
<glyph unicode="" glyph-name="hint" d="M614 682.667h240v-426h-300l-16 84h-240v-298h-84v726h384z" />
|
||||
</font></defs></svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
|
|
@ -1,61 +0,0 @@
|
|||
.codehilite .hll { background-color: #ffffcc }
|
||||
.codehilite .c { color: #60a0b0; font-style: italic } /* Comment */
|
||||
.codehilite .err { border: 1px solid #FF0000 } /* Error */
|
||||
.codehilite .k { color: #007020; font-weight: bold } /* Keyword */
|
||||
.codehilite .o { color: #666666 } /* Operator */
|
||||
.codehilite .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
|
||||
.codehilite .cp { color: #007020 } /* Comment.Preproc */
|
||||
.codehilite .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
|
||||
.codehilite .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
|
||||
.codehilite .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.codehilite .ge { font-style: italic } /* Generic.Emph */
|
||||
.codehilite .gr { color: #FF0000 } /* Generic.Error */
|
||||
.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.codehilite .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.codehilite .go { color: #808080 } /* Generic.Output */
|
||||
.codehilite .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.codehilite .gs { font-weight: bold } /* Generic.Strong */
|
||||
.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.codehilite .gt { color: #0040D0 } /* Generic.Traceback */
|
||||
.codehilite .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
|
||||
.codehilite .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
|
||||
.codehilite .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
|
||||
.codehilite .kp { color: #007020 } /* Keyword.Pseudo */
|
||||
.codehilite .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
|
||||
.codehilite .kt { color: #902000 } /* Keyword.Type */
|
||||
.codehilite .m { color: #40a070 } /* Literal.Number */
|
||||
.codehilite .s { color: #4070a0 } /* Literal.String */
|
||||
.codehilite .na { color: #4070a0 } /* Name.Attribute */
|
||||
.codehilite .nb { color: #007020 } /* Name.Builtin */
|
||||
.codehilite .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
|
||||
.codehilite .no { color: #60add5 } /* Name.Constant */
|
||||
.codehilite .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.codehilite .ni { color: #d55537; font-weight: bold } /* Name.Entity */
|
||||
.codehilite .ne { color: #007020 } /* Name.Exception */
|
||||
.codehilite .nf { color: #06287e } /* Name.Function */
|
||||
.codehilite .nl { color: #002070; font-weight: bold } /* Name.Label */
|
||||
.codehilite .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.codehilite .nt { color: #062873; font-weight: bold } /* Name.Tag */
|
||||
.codehilite .nv { color: #bb60d5 } /* Name.Variable */
|
||||
.codehilite .ow { color: #007020; font-weight: bold } /* Operator.Word */
|
||||
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.codehilite .mf { color: #40a070 } /* Literal.Number.Float */
|
||||
.codehilite .mh { color: #40a070 } /* Literal.Number.Hex */
|
||||
.codehilite .mi { color: #40a070 } /* Literal.Number.Integer */
|
||||
.codehilite .mo { color: #40a070 } /* Literal.Number.Oct */
|
||||
.codehilite .sb { color: #4070a0 } /* Literal.String.Backtick */
|
||||
.codehilite .sc { color: #4070a0 } /* Literal.String.Char */
|
||||
.codehilite .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
|
||||
.codehilite .s2 { color: #4070a0 } /* Literal.String.Double */
|
||||
.codehilite .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
|
||||
.codehilite .sh { color: #4070a0 } /* Literal.String.Heredoc */
|
||||
.codehilite .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
|
||||
.codehilite .sx { color: #c65d09 } /* Literal.String.Other */
|
||||
.codehilite .sr { color: #235388 } /* Literal.String.Regex */
|
||||
.codehilite .s1 { color: #4070a0 } /* Literal.String.Single */
|
||||
.codehilite .ss { color: #517918 } /* Literal.String.Symbol */
|
||||
.codehilite .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
||||
.codehilite .vc { color: #bb60d5 } /* Name.Variable.Class */
|
||||
.codehilite .vg { color: #bb60d5 } /* Name.Variable.Global */
|
||||
.codehilite .vi { color: #bb60d5 } /* Name.Variable.Instance */
|
||||
.codehilite .il { color: #40a070 } /* Literal.Number.Integer.Long */
|
||||
|
Before Width: | Height: | Size: 254 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 145 KiB |
658
docs/index.html
|
|
@ -1,658 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
<link href="http://spacecowboy.github.io/NoNonsense-FilePicker/index.xml" rel="alternate" type="application/rss+xml" title="NoNonsense FilePicker" />
|
||||
<link href="http://spacecowboy.github.io/NoNonsense-FilePicker/index.xml" rel="feed" type="application/rss+xml" title="NoNonsense FilePicker" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
NoNonsense FilePicker
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
|
||||
<h1>Readme </h1>
|
||||
|
||||
|
||||
|
||||
<p>
|
||||
<img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/Nexus6-picker-dark.png" width="25%"/>
|
||||
|
||||
<img src="http://spacecowboy.github.io/NoNonsense-FilePicker/screenshots/Nexus10-picker-light.png" width="60%"/>
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>Extendable for sources other than SD-card (Dropbox, FTP, Drive, etc)</li>
|
||||
<li>Can select multiple items</li>
|
||||
<li>Select directories or files, or both</li>
|
||||
<li>Create new directories in the picker</li>
|
||||
<li>Material theme with AppCompat</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="yet-another-file-picker-library">Yet another file picker library?</h2>
|
||||
|
||||
<p>I needed a file picker that had two primary properties:</p>
|
||||
|
||||
<ol>
|
||||
<li>Easy to extend: I needed a file picker that would work for normal
|
||||
files on the SD-card, and also for using the Dropbox API.</li>
|
||||
<li>Able to create a directory in the picker.</li>
|
||||
</ol>
|
||||
|
||||
<p>This project has both of those qualities. As a bonus, it also scales
|
||||
nicely to work on any phone or tablet. The core is placed in abstract
|
||||
classes, so it is fairly easy to extend the picker to create
|
||||
your own.</p>
|
||||
|
||||
<p>The library includes an implementation that allows the user to pick
|
||||
files from the SD-card. But the picker could easily be extended to get
|
||||
its file listings from another source, such as Dropbox, FTP, SSH and
|
||||
so on. The sample app includes implementations which browses your
|
||||
Dropbox and a Linux mirror FTP-server.</p>
|
||||
|
||||
<p>By inheriting from an Activity, the picker is able to be rendered as
|
||||
full screen on small screens and as a dialog on large screens. It does
|
||||
this through the theme system, so it is very important for the
|
||||
activity to use a correctly configured theme.</p>
|
||||
|
||||
<h2 id="how-to-include-in-your-project-with-gradle">How to include in your project (with Gradle)</h2>
|
||||
|
||||
<p>Just add the dependency to your <em>build.gradle</em>:</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span>repositories <span style="color: #666666">{</span>
|
||||
jcenter<span style="color: #666666">()</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
dependencies <span style="color: #666666">{</span>
|
||||
compile <span style="color: #4070a0">'com.nononsenseapps:filepicker:3.0.0'</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h2 id="how-to-use-the-included-sd-card-picker">How to use the included SD-card picker:</h2>
|
||||
|
||||
<h3 id="include-permission-in-your-manifest">Include permission in your manifest</h3>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #062873; font-weight: bold"><uses-permission</span> <span style="color: #4070a0">android:name="android.permission.WRITE_EXTERNAL_STORAGE"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="include-the-file-picker-activity">Include the file picker activity</h3>
|
||||
|
||||
<p>The intent filter is optional depending on your use case. Note that
|
||||
the theme set in the manifest is important.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #062873; font-weight: bold"><activity</span>
|
||||
<span style="color: #4070a0">android:name="com.nononsenseapps.filepicker.FilePickerActivity"</span>
|
||||
<span style="color: #4070a0">android:label="@string/app_name"</span>
|
||||
<span style="color: #4070a0">android:theme="@style/FilePickerTheme"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
<span style="color: #062873; font-weight: bold"><intent-filter></span>
|
||||
<span style="color: #062873; font-weight: bold"><action</span> <span style="color: #4070a0">android:name="android.intent.action.GET_CONTENT"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
<span style="color: #062873; font-weight: bold"><category</span> <span style="color: #4070a0">android:name="android.intent.category.DEFAULT"</span> <span style="color: #062873; font-weight: bold">/></span>
|
||||
<span style="color: #062873; font-weight: bold"></intent-filter></span>
|
||||
<span style="color: #062873; font-weight: bold"></activity></span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="configure-the-theme">Configure the theme</h3>
|
||||
|
||||
<p>You must <strong>set the theme</strong> on the activity, but you can configure it to
|
||||
match your existing application theme. You can also name it whatever
|
||||
you like..</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #60a0b0; font-style: italic"><!-- You can also inherit from NNF_BaseTheme.Light --></span>
|
||||
<span style="color: #062873; font-weight: bold"><style</span> <span style="color: #4070a0">name="FilePickerTheme"</span> <span style="color: #4070a0">parent="NNF_BaseTheme"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
<span style="color: #60a0b0; font-style: italic"><!-- Set these to match your theme --></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="colorPrimary"</span><span style="color: #062873; font-weight: bold">></span>@color/primary<span style="color: #062873; font-weight: bold"></item></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="colorPrimaryDark"</span><span style="color: #062873; font-weight: bold">></span>@color/primary_dark<span style="color: #062873; font-weight: bold"></item></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="colorAccent"</span><span style="color: #062873; font-weight: bold">></span>@color/accent<span style="color: #062873; font-weight: bold"></item></span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic"><!-- Need to set this also to style create folder dialog --></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="alertDialogTheme"</span><span style="color: #062873; font-weight: bold">></span>@style/FilePickerAlertDialogTheme<span style="color: #062873; font-weight: bold"></item></span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic"><!-- If you want to set a specific toolbar theme, do it here --></span>
|
||||
<span style="color: #60a0b0; font-style: italic"><!-- <item name="nnf_toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> --></span>
|
||||
<span style="color: #062873; font-weight: bold"></style></span>
|
||||
|
||||
<span style="color: #062873; font-weight: bold"><style</span> <span style="color: #4070a0">name="FilePickerAlertDialogTheme"</span> <span style="color: #4070a0">parent="Theme.AppCompat.Dialog.Alert"</span><span style="color: #062873; font-weight: bold">></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="colorPrimary"</span><span style="color: #062873; font-weight: bold">></span>@color/primary<span style="color: #062873; font-weight: bold"></item></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="colorPrimaryDark"</span><span style="color: #062873; font-weight: bold">></span>@color/primary_dark<span style="color: #062873; font-weight: bold"></item></span>
|
||||
<span style="color: #062873; font-weight: bold"><item</span> <span style="color: #4070a0">name="colorAccent"</span><span style="color: #062873; font-weight: bold">></span>@color/accent<span style="color: #062873; font-weight: bold"></item></span>
|
||||
<span style="color: #062873; font-weight: bold"></style></span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="starting-the-picker-in-your-app">Starting the picker in your app</h3>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #60a0b0; font-style: italic">// This always works</span>
|
||||
Intent i <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">new</span> Intent<span style="color: #666666">(</span>context<span style="color: #666666">,</span> FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">class</span><span style="color: #666666">);</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// This works if you defined the intent filter</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Intent i = new Intent(Intent.ACTION_GET_CONTENT);</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// Set these depending on your use case. These are the defaults.</span>
|
||||
i<span style="color: #666666">.</span><span style="color: #4070a0">putExtra</span><span style="color: #666666">(</span>FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">EXTRA_ALLOW_MULTIPLE</span><span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
i<span style="color: #666666">.</span><span style="color: #4070a0">putExtra</span><span style="color: #666666">(</span>FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">EXTRA_ALLOW_CREATE_DIR</span><span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">);</span>
|
||||
i<span style="color: #666666">.</span><span style="color: #4070a0">putExtra</span><span style="color: #666666">(</span>FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">EXTRA_MODE</span><span style="color: #666666">,</span> FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">MODE_FILE</span><span style="color: #666666">);</span>
|
||||
|
||||
<span style="color: #60a0b0; font-style: italic">// Configure initial directory by specifying a String.</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// You could specify a String like "/storage/emulated/0/", but that can</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// dangerous. Always use Android's API calls to get paths to the SD-card or</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// internal memory.</span>
|
||||
i<span style="color: #666666">.</span><span style="color: #4070a0">putExtra</span><span style="color: #666666">(</span>FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">EXTRA_START_PATH</span><span style="color: #666666">,</span> Environment<span style="color: #666666">.</span><span style="color: #4070a0">getExternalStorageDirectory</span><span style="color: #666666">().</span><span style="color: #4070a0">getPath</span><span style="color: #666666">());</span>
|
||||
|
||||
startActivityForResult<span style="color: #666666">(</span>i<span style="color: #666666">,</span> FILE_CODE<span style="color: #666666">);</span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="handling-the-result">Handling the result</h3>
|
||||
|
||||
<p>If you have a minimum requirement of Jelly Bean (API 16) and above,
|
||||
you can skip the second method.</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span> <span style="color: #555555; font-weight: bold">@TargetApi</span><span style="color: #666666">(</span>Build<span style="color: #666666">.</span><span style="color: #4070a0">VERSION_CODES</span><span style="color: #666666">.</span><span style="color: #4070a0">JELLY_BEAN</span><span style="color: #666666">)</span>
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> <span style="color: #902000">void</span> <span style="color: #06287e">onActivityResult</span><span style="color: #666666">(</span><span style="color: #902000">int</span> requestCode<span style="color: #666666">,</span> <span style="color: #902000">int</span> resultCode<span style="color: #666666">,</span> Intent data<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>requestCode <span style="color: #666666">==</span> FILE_CODE <span style="color: #666666">&&</span> resultCode <span style="color: #666666">==</span> Activity<span style="color: #666666">.</span><span style="color: #4070a0">RESULT_OK</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>data<span style="color: #666666">.</span><span style="color: #4070a0">getBooleanExtra</span><span style="color: #666666">(</span>FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">EXTRA_ALLOW_MULTIPLE</span><span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">false</span><span style="color: #666666">))</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// For JellyBean and above</span>
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>Build<span style="color: #666666">.</span><span style="color: #4070a0">VERSION</span><span style="color: #666666">.</span><span style="color: #4070a0">SDK_INT</span> <span style="color: #666666">>=</span> Build<span style="color: #666666">.</span><span style="color: #4070a0">VERSION_CODES</span><span style="color: #666666">.</span><span style="color: #4070a0">JELLY_BEAN</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
ClipData clip <span style="color: #666666">=</span> data<span style="color: #666666">.</span><span style="color: #4070a0">getClipData</span><span style="color: #666666">();</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>clip <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">for</span> <span style="color: #666666">(</span><span style="color: #902000">int</span> i <span style="color: #666666">=</span> <span style="color: #40a070">0</span><span style="color: #666666">;</span> i <span style="color: #666666"><</span> clip<span style="color: #666666">.</span><span style="color: #4070a0">getItemCount</span><span style="color: #666666">();</span> i<span style="color: #666666">++)</span> <span style="color: #666666">{</span>
|
||||
Uri uri <span style="color: #666666">=</span> clip<span style="color: #666666">.</span><span style="color: #4070a0">getItemAt</span><span style="color: #666666">(</span>i<span style="color: #666666">).</span><span style="color: #4070a0">getUri</span><span style="color: #666666">();</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Do something with the URI</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// For Ice Cream Sandwich</span>
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
ArrayList<span style="color: #666666"><</span>String<span style="color: #666666">></span> paths <span style="color: #666666">=</span> data<span style="color: #666666">.</span><span style="color: #4070a0">getStringArrayListExtra</span>
|
||||
<span style="color: #666666">(</span>FilePickerActivity<span style="color: #666666">.</span><span style="color: #4070a0">EXTRA_PATHS</span><span style="color: #666666">);</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">if</span> <span style="color: #666666">(</span>paths <span style="color: #666666">!=</span> <span style="color: #007020; font-weight: bold">null</span><span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">for</span> <span style="color: #666666">(</span>String path<span style="color: #666666">:</span> paths<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
Uri uri <span style="color: #666666">=</span> Uri<span style="color: #666666">.</span><span style="color: #4070a0">parse</span><span style="color: #666666">(</span>path<span style="color: #666666">);</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Do something with the URI</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #666666">}</span> <span style="color: #007020; font-weight: bold">else</span> <span style="color: #666666">{</span>
|
||||
Uri uri <span style="color: #666666">=</span> data<span style="color: #666666">.</span><span style="color: #4070a0">getData</span><span style="color: #666666">();</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Do something with the URI</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h2 id="customizing-the-picker">Customizing the picker</h2>
|
||||
|
||||
<p>Extend <code>AbstractFilePickerActivity</code> and implement <code>getFragment</code>. It
|
||||
should return an instance of <code>AbstractFilePickerFragment</code>. This
|
||||
basically means that the activity is just the same boilerplate with as
|
||||
single line changed (see the sample app’s Dropbox example for an
|
||||
activity which actually has to do some extra work):</p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span><span style="color: #60a0b0; font-style: italic">// Making a custom SD-card picker</span>
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #007020; font-weight: bold">class</span> <span style="color: #0e84b5; font-weight: bold">MyPickerActivity</span> <span style="color: #007020; font-weight: bold">extends</span> AbstractFilePickerActivity<span style="color: #666666"><</span>File<span style="color: #666666">></span> <span style="color: #666666">{</span>
|
||||
|
||||
<span style="color: #007020; font-weight: bold">public</span> <span style="color: #06287e">MyPickerActivity</span><span style="color: #666666">()</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #007020; font-weight: bold">super</span><span style="color: #666666">();</span>
|
||||
<span style="color: #666666">}</span>
|
||||
|
||||
<span style="color: #555555; font-weight: bold">@Override</span>
|
||||
<span style="color: #007020; font-weight: bold">protected</span> AbstractFilePickerFragment<span style="color: #666666"><</span>File<span style="color: #666666">></span> <span style="color: #06287e">getFragment</span><span style="color: #666666">(</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> String startPath<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">int</span> mode<span style="color: #666666">,</span> <span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowMultiple<span style="color: #666666">,</span>
|
||||
<span style="color: #007020; font-weight: bold">final</span> <span style="color: #902000">boolean</span> allowCreateDir<span style="color: #666666">)</span> <span style="color: #666666">{</span>
|
||||
<span style="color: #60a0b0; font-style: italic">// Only the fragment in this line needs to be changed</span>
|
||||
AbstractFilePickerFragment<span style="color: #666666"><</span>File<span style="color: #666666">></span> fragment <span style="color: #666666">=</span> <span style="color: #007020; font-weight: bold">new</span> MyPickerFragment<span style="color: #666666">();</span>
|
||||
fragment<span style="color: #666666">.</span><span style="color: #4070a0">setArgs</span><span style="color: #666666">(</span>startPath<span style="color: #666666">,</span> mode<span style="color: #666666">,</span> allowMultiple<span style="color: #666666">,</span> allowCreateDir<span style="color: #666666">);</span>
|
||||
<span style="color: #007020; font-weight: bold">return</span> fragment<span style="color: #666666">;</span>
|
||||
<span style="color: #666666">}</span>
|
||||
<span style="color: #666666">}</span>
|
||||
</pre></div>
|
||||
|
||||
<h3 id="extend-abstractfilepickerfragment">Extend AbstractFilePickerFragment</h3>
|
||||
|
||||
<p>Which requires you to implement</p>
|
||||
|
||||
<ul>
|
||||
<li>onNewFolder</li>
|
||||
<li>isDir</li>
|
||||
<li>getParent</li>
|
||||
<li>getPath</li>
|
||||
<li>getFullPath</li>
|
||||
<li>getName</li>
|
||||
<li>getRoot</li>
|
||||
<li>toUri</li>
|
||||
<li>getLoader</li>
|
||||
</ul>
|
||||
|
||||
<p>If you only want to make a custom SD-card picker, you can instead extend <code>FilePickerFragment</code>, and only override the relevant method you want to change.</p>
|
||||
|
||||
<p>See the sample app and the examples for some concrete code.</p>
|
||||
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="next">
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/" title="Readme">
|
||||
<span class="direction">
|
||||
Next
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Readme
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-next" role="button" aria-label="Next">
|
||||
<i class="icon icon-forward"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
1566
docs/index.xml
|
|
@ -1,826 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
|
||||
|
||||
|
||||
<html class="no-js">
|
||||
|
||||
<head lang="en-us">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=10" />
|
||||
<title>License - NoNonsense FilePicker</title>
|
||||
<meta name="generator" content="Hugo 0.16" />
|
||||
|
||||
|
||||
<meta name="description" content="An extensible and flexible file-picker for Android.">
|
||||
|
||||
<link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
<meta name="author" content="SpaceCowboy">
|
||||
|
||||
|
||||
<meta property="og:url" content="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
<meta property="og:title" content="NoNonsense FilePicker">
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="NoNonsense FilePicker">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
<link rel="icon" type="image/x-icon" href="http://spacecowboy.github.io/NoNonsense-FilePicker/images/favicon.ico">
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'Icon';
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?52m981');
|
||||
src: url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
|
||||
format('embedded-opentype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.woff?52m981')
|
||||
format('woff'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
|
||||
format('truetype'),
|
||||
url('http://spacecowboy.github.io/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
|
||||
format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/application.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/temporary.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/palettes.css">
|
||||
<link rel="stylesheet" href="http://spacecowboy.github.io/NoNonsense-FilePicker/stylesheets/highlight/highlight.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,700|Roboto%2bMono">
|
||||
<style>
|
||||
body, input {
|
||||
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
pre, code {
|
||||
font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="palette-primary-red palette-accent-light green">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="backdrop">
|
||||
<div class="backdrop-paper"></div>
|
||||
</div>
|
||||
|
||||
<input class="toggle" type="checkbox" id="toggle-drawer">
|
||||
<input class="toggle" type="checkbox" id="toggle-search">
|
||||
<label class="toggle-button overlay" for="toggle-drawer"></label>
|
||||
|
||||
<header class="header">
|
||||
<nav aria-label="Header">
|
||||
<div class="bar default">
|
||||
<div class="button button-menu" role="button" aria-label="Menu">
|
||||
<label class="toggle-button icon icon-menu" for="toggle-drawer">
|
||||
<span></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
License
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="button button-github" role="button" aria-label="GitHub">
|
||||
<a href="https://github.com/spacecowboy" title="@spacecowboy on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bar search">
|
||||
<div class="button button-close" role="button" aria-label="Close">
|
||||
<label class="toggle-button icon icon-back" for="toggle-search"></label>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="field">
|
||||
<input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button button-reset" role="button" aria-label="Search">
|
||||
<button class="toggle-button icon icon-close" id="reset-search"></button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<div class="drawer">
|
||||
<nav aria-label="Navigation">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker" class="project">
|
||||
<div class="banner">
|
||||
|
||||
<div class="name">
|
||||
<strong>NoNonsense FilePicker </strong>
|
||||
|
||||
<br>
|
||||
spacecowboy/NoNonsense-FilePicker
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
|
||||
<ul class="repo">
|
||||
<li class="repo-download">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/archive/master.zip" target="_blank" title="Download" data-action="download">
|
||||
<i class="icon icon-download"></i> Download
|
||||
</a>
|
||||
</li>
|
||||
<li class="repo-stars">
|
||||
<a href="https://github.com/spacecowboy/NoNonsense-FilePicker/stargazers" target="_blank" title="Stargazers" data-action="star">
|
||||
<i class="icon icon-star"></i> Stars
|
||||
<span class="count">–</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
|
||||
|
||||
<div class="toc">
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Readme" href="http://spacecowboy.github.io/NoNonsense-FilePicker/readme/">
|
||||
|
||||
Readme
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Changelog" href="http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/">
|
||||
|
||||
Changelog
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="current" title="License" href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/">
|
||||
|
||||
License
|
||||
</a>
|
||||
|
||||
|
||||
<ul id="scrollspy">
|
||||
</ul>
|
||||
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
|
||||
<span class="section">Examples</span>
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Change the sort order" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/">
|
||||
|
||||
Change the sort order
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Filter based on file extension" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/">
|
||||
|
||||
Filter based on file extension
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Custom item layout" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/">
|
||||
|
||||
Custom item layout
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override the back button" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/">
|
||||
|
||||
Override the back button
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Override selection behavior" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/">
|
||||
|
||||
Override selection behavior
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a title="Standalone fragment" href="http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/">
|
||||
|
||||
Standalone fragment
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<span class="section">The author</span>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/spacecowboy" target="_blank" title="@spacecowboy on GitHub">
|
||||
@spacecowboy on GitHub
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<article class="article">
|
||||
<div class="wrapper">
|
||||
<h1>License </h1>
|
||||
|
||||
<p>Copyright © 2016 Jonas Kalderstam <a href="mailto:jonas@cowboyprogrammer.org">jonas@cowboyprogrammer.org</a></p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span>Mozilla Public License Version 2.0
|
||||
==================================
|
||||
|
||||
1. Definitions
|
||||
--------------
|
||||
|
||||
1.1. "Contributor"
|
||||
means each individual or legal entity that creates, contributes to
|
||||
the creation of, or owns Covered Software.
|
||||
|
||||
1.2. "Contributor Version"
|
||||
means the combination of the Contributions of others (if any) used
|
||||
by a Contributor and that particular Contributor's Contribution.
|
||||
|
||||
1.3. "Contribution"
|
||||
means Covered Software of a particular Contributor.
|
||||
|
||||
1.4. "Covered Software"
|
||||
means Source Code Form to which the initial Contributor has attached
|
||||
the notice in Exhibit A, the Executable Form of such Source Code
|
||||
Form, and Modifications of such Source Code Form, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.5. "Incompatible With Secondary Licenses"
|
||||
means
|
||||
|
||||
(a) that the initial Contributor has attached the notice described
|
||||
in Exhibit B to the Covered Software; or
|
||||
|
||||
(b) that the Covered Software was made available under the terms of
|
||||
version 1.1 or earlier of the License, but not also under the
|
||||
terms of a Secondary License.
|
||||
|
||||
1.6. "Executable Form"
|
||||
means any form of the work other than Source Code Form.
|
||||
|
||||
1.7. "Larger Work"
|
||||
means a work that combines Covered Software with other material, in
|
||||
a separate file or files, that is not Covered Software.
|
||||
|
||||
1.8. "License"
|
||||
means this document.
|
||||
|
||||
1.9. "Licensable"
|
||||
means having the right to grant, to the maximum extent possible,
|
||||
whether at the time of the initial grant or subsequently, any and
|
||||
all of the rights conveyed by this License.
|
||||
|
||||
1.10. "Modifications"
|
||||
means any of the following:
|
||||
|
||||
(a) any file in Source Code Form that results from an addition to,
|
||||
deletion from, or modification of the contents of Covered
|
||||
Software; or
|
||||
|
||||
(b) any new file in Source Code Form that contains any Covered
|
||||
Software.
|
||||
|
||||
1.11. "Patent Claims" of a Contributor
|
||||
means any patent claim(s), including without limitation, method,
|
||||
process, and apparatus claims, in any patent Licensable by such
|
||||
Contributor that would be infringed, but for the grant of the
|
||||
License, by the making, using, selling, offering for sale, having
|
||||
made, import, or transfer of either its Contributions or its
|
||||
Contributor Version.
|
||||
|
||||
1.12. "Secondary License"
|
||||
means either the GNU General Public License, Version 2.0, the GNU
|
||||
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||
Public License, Version 3.0, or any later versions of those
|
||||
licenses.
|
||||
|
||||
1.13. "Source Code Form"
|
||||
means the form of the work preferred for making modifications.
|
||||
|
||||
1.14. "You" (or "Your")
|
||||
means an individual or a legal entity exercising rights under this
|
||||
License. For legal entities, "You" includes any entity that
|
||||
controls, is controlled by, or is under common control with You. For
|
||||
purposes of this definition, "control" means (a) the power, direct
|
||||
or indirect, to cause the direction or management of such entity,
|
||||
whether by contract or otherwise, or (b) ownership of more than
|
||||
fifty percent (50%) of the outstanding shares or beneficial
|
||||
ownership of such entity.
|
||||
|
||||
2. License Grants and Conditions
|
||||
--------------------------------
|
||||
|
||||
2.1. Grants
|
||||
|
||||
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or trademark)
|
||||
Licensable by such Contributor to use, reproduce, make available,
|
||||
modify, display, perform, distribute, and otherwise exploit its
|
||||
Contributions, either on an unmodified basis, with Modifications, or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||
for sale, have made, import, and otherwise transfer either its
|
||||
Contributions or its Contributor Version.
|
||||
|
||||
2.2. Effective Date
|
||||
|
||||
The licenses granted in Section 2.1 with respect to any Contribution
|
||||
become effective for each Contribution on the date the Contributor first
|
||||
distributes such Contribution.
|
||||
|
||||
2.3. Limitations on Grant Scope
|
||||
|
||||
The licenses granted in this Section 2 are the only rights granted under
|
||||
this License. No additional rights or licenses will be implied from the
|
||||
distribution or licensing of Covered Software under this License.
|
||||
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||
Contributor:
|
||||
|
||||
(a) for any code that a Contributor has removed from Covered Software;
|
||||
or
|
||||
|
||||
(b) for infringements caused by: (i) Your and any other third party's
|
||||
modifications of Covered Software, or (ii) the combination of its
|
||||
Contributions with other software (except as part of its Contributor
|
||||
Version); or
|
||||
|
||||
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||
its Contributions.
|
||||
|
||||
This License does not grant any rights in the trademarks, service marks,
|
||||
or logos of any Contributor (except as may be necessary to comply with
|
||||
the notice requirements in Section 3.4).
|
||||
|
||||
2.4. Subsequent Licenses
|
||||
|
||||
No Contributor makes additional grants as a result of Your choice to
|
||||
distribute the Covered Software under a subsequent version of this
|
||||
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||
permitted under the terms of Section 3.3).
|
||||
|
||||
2.5. Representation
|
||||
|
||||
Each Contributor represents that the Contributor believes its
|
||||
Contributions are its original creation(s) or it has sufficient rights
|
||||
to grant the rights to its Contributions conveyed by this License.
|
||||
|
||||
2.6. Fair Use
|
||||
|
||||
This License is not intended to limit any rights You have under
|
||||
applicable copyright doctrines of fair use, fair dealing, or other
|
||||
equivalents.
|
||||
|
||||
2.7. Conditions
|
||||
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||
in Section 2.1.
|
||||
|
||||
3. Responsibilities
|
||||
-------------------
|
||||
|
||||
3.1. Distribution of Source Form
|
||||
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under
|
||||
the terms of this License. You must inform recipients that the Source
|
||||
Code Form of the Covered Software is governed by the terms of this
|
||||
License, and how they can obtain a copy of this License. You may not
|
||||
attempt to alter or restrict the recipients' rights in the Source Code
|
||||
Form.
|
||||
|
||||
3.2. Distribution of Executable Form
|
||||
|
||||
If You distribute Covered Software in Executable Form then:
|
||||
|
||||
(a) such Covered Software must also be made available in Source Code
|
||||
Form, as described in Section 3.1, and You must inform recipients of
|
||||
the Executable Form how they can obtain a copy of such Source Code
|
||||
Form by reasonable means in a timely manner, at a charge no more
|
||||
than the cost of distribution to the recipient; and
|
||||
|
||||
(b) You may distribute such Executable Form under the terms of this
|
||||
License, or sublicense it under different terms, provided that the
|
||||
license for the Executable Form does not attempt to limit or alter
|
||||
the recipients' rights in the Source Code Form under this License.
|
||||
|
||||
3.3. Distribution of a Larger Work
|
||||
|
||||
You may create and distribute a Larger Work under terms of Your choice,
|
||||
provided that You also comply with the requirements of this License for
|
||||
the Covered Software. If the Larger Work is a combination of Covered
|
||||
Software with a work governed by one or more Secondary Licenses, and the
|
||||
Covered Software is not Incompatible With Secondary Licenses, this
|
||||
License permits You to additionally distribute such Covered Software
|
||||
under the terms of such Secondary License(s), so that the recipient of
|
||||
the Larger Work may, at their option, further distribute the Covered
|
||||
Software under the terms of either this License or such Secondary
|
||||
License(s).
|
||||
|
||||
3.4. Notices
|
||||
|
||||
You may not remove or alter the substance of any license notices
|
||||
(including copyright notices, patent notices, disclaimers of warranty,
|
||||
or limitations of liability) contained within the Source Code Form of
|
||||
the Covered Software, except that You may alter any license notices to
|
||||
the extent required to remedy known factual inaccuracies.
|
||||
|
||||
3.5. Application of Additional Terms
|
||||
|
||||
You may choose to offer, and to charge a fee for, warranty, support,
|
||||
indemnity or liability obligations to one or more recipients of Covered
|
||||
Software. However, You may do so only on Your own behalf, and not on
|
||||
behalf of any Contributor. You must make it absolutely clear that any
|
||||
such warranty, support, indemnity, or liability obligation is offered by
|
||||
You alone, and You hereby agree to indemnify every Contributor for any
|
||||
liability incurred by such Contributor as a result of warranty, support,
|
||||
indemnity or liability terms You offer. You may include additional
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
jurisdiction.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation
|
||||
---------------------------------------------------
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Software due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description must
|
||||
be placed in a text file included with all distributions of the Covered
|
||||
Software under this License. Except to the extent prohibited by statute
|
||||
or regulation, such description must be sufficiently detailed for a
|
||||
recipient of ordinary skill to be able to understand it.
|
||||
|
||||
5. Termination
|
||||
--------------
|
||||
|
||||
5.1. The rights granted under this License will terminate automatically
|
||||
if You fail to comply with any of its terms. However, if You become
|
||||
compliant, then the rights granted under this License from a particular
|
||||
Contributor are reinstated (a) provisionally, unless and until such
|
||||
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||
ongoing basis, if such Contributor fails to notify You of the
|
||||
non-compliance by some reasonable means prior to 60 days after You have
|
||||
come back into compliance. Moreover, Your grants from a particular
|
||||
Contributor are reinstated on an ongoing basis if such Contributor
|
||||
notifies You of the non-compliance by some reasonable means, this is the
|
||||
first time You have received notice of non-compliance with this License
|
||||
from such Contributor, and You become compliant prior to 30 days after
|
||||
Your receipt of the notice.
|
||||
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
infringement claim (excluding declaratory judgment actions,
|
||||
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||
directly or indirectly infringes any patent, then the rights granted to
|
||||
You by any and all Contributors for the Covered Software under Section
|
||||
2.1 of this License shall terminate.
|
||||
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||
end user license agreements (excluding distributors and resellers) which
|
||||
have been validly granted by You or Your distributors under this License
|
||||
prior to termination shall survive termination.
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 6. Disclaimer of Warranty *
|
||||
* ------------------------- *
|
||||
* *
|
||||
* Covered Software is provided under this License on an "as is" *
|
||||
* basis, without warranty of any kind, either expressed, implied, or *
|
||||
* statutory, including, without limitation, warranties that the *
|
||||
* Covered Software is free of defects, merchantable, fit for a *
|
||||
* particular purpose or non-infringing. The entire risk as to the *
|
||||
* quality and performance of the Covered Software is with You. *
|
||||
* Should any Covered Software prove defective in any respect, You *
|
||||
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||
* essential part of this License. No use of any Covered Software is *
|
||||
* authorized under this License except under this disclaimer. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 7. Limitation of Liability *
|
||||
* -------------------------- *
|
||||
* *
|
||||
* Under no circumstances and under no legal theory, whether tort *
|
||||
* (including negligence), contract, or otherwise, shall any *
|
||||
* Contributor, or anyone who distributes Covered Software as *
|
||||
* permitted above, be liable to You for any direct, indirect, *
|
||||
* special, incidental, or consequential damages of any character *
|
||||
* including, without limitation, damages for lost profits, loss of *
|
||||
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||
* and all other commercial damages or losses, even if such party *
|
||||
* shall have been informed of the possibility of such damages. This *
|
||||
* limitation of liability shall not apply to liability for death or *
|
||||
* personal injury resulting from such party's negligence to the *
|
||||
* extent applicable law prohibits such limitation. Some *
|
||||
* jurisdictions do not allow the exclusion or limitation of *
|
||||
* incidental or consequential damages, so this exclusion and *
|
||||
* limitation may not apply to You. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
8. Litigation
|
||||
-------------
|
||||
|
||||
Any litigation relating to this License may be brought only in the
|
||||
courts of a jurisdiction where the defendant maintains its principal
|
||||
place of business and such litigation shall be governed by laws of that
|
||||
jurisdiction, without reference to its conflict-of-law provisions.
|
||||
Nothing in this Section shall prevent a party's ability to bring
|
||||
cross-claims or counter-claims.
|
||||
|
||||
9. Miscellaneous
|
||||
----------------
|
||||
|
||||
This License represents the complete agreement concerning the subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. Any law or regulation which provides
|
||||
that the language of a contract shall be construed against the drafter
|
||||
shall not be used to construe this License against a Contributor.
|
||||
|
||||
10. Versions of the License
|
||||
---------------------------
|
||||
|
||||
10.1. New Versions
|
||||
|
||||
Mozilla Foundation is the license steward. Except as provided in Section
|
||||
10.3, no one other than the license steward has the right to modify or
|
||||
publish new versions of this License. Each version will be given a
|
||||
distinguishing version number.
|
||||
|
||||
10.2. Effect of New Versions
|
||||
|
||||
You may distribute the Covered Software under the terms of the version
|
||||
of the License under which You originally received the Covered Software,
|
||||
or under the terms of any subsequent version published by the license
|
||||
steward.
|
||||
|
||||
10.3. Modified Versions
|
||||
|
||||
If you create software not governed by this License, and you want to
|
||||
create a new license for such software, you may create and use a
|
||||
modified version of this License if you rename the license and remove
|
||||
any references to the name of the license steward (except to note that
|
||||
such modified license differs from this License).
|
||||
|
||||
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||
Licenses
|
||||
|
||||
If You choose to distribute Source Code Form that is Incompatible With
|
||||
Secondary Licenses under the terms of this version of the License, the
|
||||
notice described in Exhibit B of this License must be attached.
|
||||
|
||||
Exhibit A - Source Code Form License Notice
|
||||
-------------------------------------------
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular
|
||||
file, then You may include the notice in a location (such as a LICENSE
|
||||
file in a relevant directory) where a recipient would be likely to look
|
||||
for such a notice.
|
||||
|
||||
You may add additional accurate notices of copyright ownership.
|
||||
|
||||
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||
---------------------------------------------------------
|
||||
|
||||
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||
defined by the Mozilla Public License, v. 2.0.
|
||||
</pre></div>
|
||||
|
||||
|
||||
<aside class="copyright" role="note">
|
||||
|
||||
© 2016 Released under the Mozilla Public License 2.0 –
|
||||
|
||||
Documentation built with
|
||||
<a href="https://www.gohugo.io" target="_blank">Hugo</a>
|
||||
using the
|
||||
<a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme.
|
||||
</aside>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
<nav class="pagination" aria-label="Footer">
|
||||
<div class="previous">
|
||||
|
||||
<a href="http://spacecowboy.github.io/NoNonsense-FilePicker/" title="Readme">
|
||||
<span class="direction">
|
||||
Previous
|
||||
</span>
|
||||
<div class="page">
|
||||
<div class="button button-previous" role="button" aria-label="Previous">
|
||||
<i class="icon icon-back"></i>
|
||||
</div>
|
||||
<div class="stretch">
|
||||
<div class="title">
|
||||
Readme
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="next">
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="results" role="status" aria-live="polite">
|
||||
<div class="scrollable">
|
||||
<div class="wrapper">
|
||||
<div class="meta"></div>
|
||||
<div class="list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var base_url = 'http:\/\/spacecowboy.github.io\/NoNonsense-FilePicker\/';
|
||||
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
|
||||
|
||||
</script>
|
||||
|
||||
<script src="http://spacecowboy.github.io/NoNonsense-FilePicker/javascripts/application.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Add headers to scrollspy */
|
||||
var headers = document.getElementsByTagName("h2");
|
||||
var scrollspy = document.getElementById('scrollspy');
|
||||
|
||||
if(scrollspy) {
|
||||
if(headers.length > 0) {
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var li = document.createElement("li");
|
||||
li.setAttribute("class", "anchor");
|
||||
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", headers[i].innerHTML);
|
||||
a.innerHTML = headers[i].innerHTML;
|
||||
|
||||
li.appendChild(a)
|
||||
scrollspy.appendChild(li);
|
||||
}
|
||||
} else {
|
||||
scrollspy.parentElement.removeChild(scrollspy)
|
||||
}
|
||||
|
||||
|
||||
/* Add permanent link next to the headers */
|
||||
var headers = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
|
||||
|
||||
for(var i = 0; i < headers.length; i++) {
|
||||
var a = document.createElement("a");
|
||||
a.setAttribute("class", "headerlink");
|
||||
a.setAttribute("href", "#" + headers[i].id);
|
||||
a.setAttribute("title", "Permanent link")
|
||||
a.innerHTML = "#";
|
||||
headers[i].appendChild(a);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<script src="//gohugo.io/js/highlight.pack.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,397 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Licenses on NoNonsense FilePicker</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/license/</link>
|
||||
<description>Recent content in Licenses on NoNonsense FilePicker</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 16 Jul 2016 16:35:07 +0200</lastBuildDate>
|
||||
<atom:link href="http://spacecowboy.github.io/NoNonsense-FilePicker/license/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>License</title>
|
||||
<link>http://spacecowboy.github.io/NoNonsense-FilePicker/license/</link>
|
||||
<pubDate>Sat, 16 Jul 2016 16:35:07 +0200</pubDate>
|
||||
|
||||
<guid>http://spacecowboy.github.io/NoNonsense-FilePicker/license/</guid>
|
||||
<description><p>Copyright &copy; 2016 Jonas Kalderstam <a href="mailto:jonas@cowboyprogrammer.org">jonas@cowboyprogrammer.org</a></p>
|
||||
<div class="highlight" style="background: #f0f0f0"><pre style="line-height: 125%"><span></span>Mozilla Public License Version 2.0
|
||||
==================================
|
||||
|
||||
1. Definitions
|
||||
--------------
|
||||
|
||||
1.1. &quot;Contributor&quot;
|
||||
means each individual or legal entity that creates, contributes to
|
||||
the creation of, or owns Covered Software.
|
||||
|
||||
1.2. &quot;Contributor Version&quot;
|
||||
means the combination of the Contributions of others (if any) used
|
||||
by a Contributor and that particular Contributor&#39;s Contribution.
|
||||
|
||||
1.3. &quot;Contribution&quot;
|
||||
means Covered Software of a particular Contributor.
|
||||
|
||||
1.4. &quot;Covered Software&quot;
|
||||
means Source Code Form to which the initial Contributor has attached
|
||||
the notice in Exhibit A, the Executable Form of such Source Code
|
||||
Form, and Modifications of such Source Code Form, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.5. &quot;Incompatible With Secondary Licenses&quot;
|
||||
means
|
||||
|
||||
(a) that the initial Contributor has attached the notice described
|
||||
in Exhibit B to the Covered Software; or
|
||||
|
||||
(b) that the Covered Software was made available under the terms of
|
||||
version 1.1 or earlier of the License, but not also under the
|
||||
terms of a Secondary License.
|
||||
|
||||
1.6. &quot;Executable Form&quot;
|
||||
means any form of the work other than Source Code Form.
|
||||
|
||||
1.7. &quot;Larger Work&quot;
|
||||
means a work that combines Covered Software with other material, in
|
||||
a separate file or files, that is not Covered Software.
|
||||
|
||||
1.8. &quot;License&quot;
|
||||
means this document.
|
||||
|
||||
1.9. &quot;Licensable&quot;
|
||||
means having the right to grant, to the maximum extent possible,
|
||||
whether at the time of the initial grant or subsequently, any and
|
||||
all of the rights conveyed by this License.
|
||||
|
||||
1.10. &quot;Modifications&quot;
|
||||
means any of the following:
|
||||
|
||||
(a) any file in Source Code Form that results from an addition to,
|
||||
deletion from, or modification of the contents of Covered
|
||||
Software; or
|
||||
|
||||
(b) any new file in Source Code Form that contains any Covered
|
||||
Software.
|
||||
|
||||
1.11. &quot;Patent Claims&quot; of a Contributor
|
||||
means any patent claim(s), including without limitation, method,
|
||||
process, and apparatus claims, in any patent Licensable by such
|
||||
Contributor that would be infringed, but for the grant of the
|
||||
License, by the making, using, selling, offering for sale, having
|
||||
made, import, or transfer of either its Contributions or its
|
||||
Contributor Version.
|
||||
|
||||
1.12. &quot;Secondary License&quot;
|
||||
means either the GNU General Public License, Version 2.0, the GNU
|
||||
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||
Public License, Version 3.0, or any later versions of those
|
||||
licenses.
|
||||
|
||||
1.13. &quot;Source Code Form&quot;
|
||||
means the form of the work preferred for making modifications.
|
||||
|
||||
1.14. &quot;You&quot; (or &quot;Your&quot;)
|
||||
means an individual or a legal entity exercising rights under this
|
||||
License. For legal entities, &quot;You&quot; includes any entity that
|
||||
controls, is controlled by, or is under common control with You. For
|
||||
purposes of this definition, &quot;control&quot; means (a) the power, direct
|
||||
or indirect, to cause the direction or management of such entity,
|
||||
whether by contract or otherwise, or (b) ownership of more than
|
||||
fifty percent (50%) of the outstanding shares or beneficial
|
||||
ownership of such entity.
|
||||
|
||||
2. License Grants and Conditions
|
||||
--------------------------------
|
||||
|
||||
2.1. Grants
|
||||
|
||||
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or trademark)
|
||||
Licensable by such Contributor to use, reproduce, make available,
|
||||
modify, display, perform, distribute, and otherwise exploit its
|
||||
Contributions, either on an unmodified basis, with Modifications, or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||
for sale, have made, import, and otherwise transfer either its
|
||||
Contributions or its Contributor Version.
|
||||
|
||||
2.2. Effective Date
|
||||
|
||||
The licenses granted in Section 2.1 with respect to any Contribution
|
||||
become effective for each Contribution on the date the Contributor first
|
||||
distributes such Contribution.
|
||||
|
||||
2.3. Limitations on Grant Scope
|
||||
|
||||
The licenses granted in this Section 2 are the only rights granted under
|
||||
this License. No additional rights or licenses will be implied from the
|
||||
distribution or licensing of Covered Software under this License.
|
||||
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||
Contributor:
|
||||
|
||||
(a) for any code that a Contributor has removed from Covered Software;
|
||||
or
|
||||
|
||||
(b) for infringements caused by: (i) Your and any other third party&#39;s
|
||||
modifications of Covered Software, or (ii) the combination of its
|
||||
Contributions with other software (except as part of its Contributor
|
||||
Version); or
|
||||
|
||||
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||
its Contributions.
|
||||
|
||||
This License does not grant any rights in the trademarks, service marks,
|
||||
or logos of any Contributor (except as may be necessary to comply with
|
||||
the notice requirements in Section 3.4).
|
||||
|
||||
2.4. Subsequent Licenses
|
||||
|
||||
No Contributor makes additional grants as a result of Your choice to
|
||||
distribute the Covered Software under a subsequent version of this
|
||||
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||
permitted under the terms of Section 3.3).
|
||||
|
||||
2.5. Representation
|
||||
|
||||
Each Contributor represents that the Contributor believes its
|
||||
Contributions are its original creation(s) or it has sufficient rights
|
||||
to grant the rights to its Contributions conveyed by this License.
|
||||
|
||||
2.6. Fair Use
|
||||
|
||||
This License is not intended to limit any rights You have under
|
||||
applicable copyright doctrines of fair use, fair dealing, or other
|
||||
equivalents.
|
||||
|
||||
2.7. Conditions
|
||||
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||
in Section 2.1.
|
||||
|
||||
3. Responsibilities
|
||||
-------------------
|
||||
|
||||
3.1. Distribution of Source Form
|
||||
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under
|
||||
the terms of this License. You must inform recipients that the Source
|
||||
Code Form of the Covered Software is governed by the terms of this
|
||||
License, and how they can obtain a copy of this License. You may not
|
||||
attempt to alter or restrict the recipients&#39; rights in the Source Code
|
||||
Form.
|
||||
|
||||
3.2. Distribution of Executable Form
|
||||
|
||||
If You distribute Covered Software in Executable Form then:
|
||||
|
||||
(a) such Covered Software must also be made available in Source Code
|
||||
Form, as described in Section 3.1, and You must inform recipients of
|
||||
the Executable Form how they can obtain a copy of such Source Code
|
||||
Form by reasonable means in a timely manner, at a charge no more
|
||||
than the cost of distribution to the recipient; and
|
||||
|
||||
(b) You may distribute such Executable Form under the terms of this
|
||||
License, or sublicense it under different terms, provided that the
|
||||
license for the Executable Form does not attempt to limit or alter
|
||||
the recipients&#39; rights in the Source Code Form under this License.
|
||||
|
||||
3.3. Distribution of a Larger Work
|
||||
|
||||
You may create and distribute a Larger Work under terms of Your choice,
|
||||
provided that You also comply with the requirements of this License for
|
||||
the Covered Software. If the Larger Work is a combination of Covered
|
||||
Software with a work governed by one or more Secondary Licenses, and the
|
||||
Covered Software is not Incompatible With Secondary Licenses, this
|
||||
License permits You to additionally distribute such Covered Software
|
||||
under the terms of such Secondary License(s), so that the recipient of
|
||||
the Larger Work may, at their option, further distribute the Covered
|
||||
Software under the terms of either this License or such Secondary
|
||||
License(s).
|
||||
|
||||
3.4. Notices
|
||||
|
||||
You may not remove or alter the substance of any license notices
|
||||
(including copyright notices, patent notices, disclaimers of warranty,
|
||||
or limitations of liability) contained within the Source Code Form of
|
||||
the Covered Software, except that You may alter any license notices to
|
||||
the extent required to remedy known factual inaccuracies.
|
||||
|
||||
3.5. Application of Additional Terms
|
||||
|
||||
You may choose to offer, and to charge a fee for, warranty, support,
|
||||
indemnity or liability obligations to one or more recipients of Covered
|
||||
Software. However, You may do so only on Your own behalf, and not on
|
||||
behalf of any Contributor. You must make it absolutely clear that any
|
||||
such warranty, support, indemnity, or liability obligation is offered by
|
||||
You alone, and You hereby agree to indemnify every Contributor for any
|
||||
liability incurred by such Contributor as a result of warranty, support,
|
||||
indemnity or liability terms You offer. You may include additional
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
jurisdiction.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation
|
||||
---------------------------------------------------
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Software due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description must
|
||||
be placed in a text file included with all distributions of the Covered
|
||||
Software under this License. Except to the extent prohibited by statute
|
||||
or regulation, such description must be sufficiently detailed for a
|
||||
recipient of ordinary skill to be able to understand it.
|
||||
|
||||
5. Termination
|
||||
--------------
|
||||
|
||||
5.1. The rights granted under this License will terminate automatically
|
||||
if You fail to comply with any of its terms. However, if You become
|
||||
compliant, then the rights granted under this License from a particular
|
||||
Contributor are reinstated (a) provisionally, unless and until such
|
||||
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||
ongoing basis, if such Contributor fails to notify You of the
|
||||
non-compliance by some reasonable means prior to 60 days after You have
|
||||
come back into compliance. Moreover, Your grants from a particular
|
||||
Contributor are reinstated on an ongoing basis if such Contributor
|
||||
notifies You of the non-compliance by some reasonable means, this is the
|
||||
first time You have received notice of non-compliance with this License
|
||||
from such Contributor, and You become compliant prior to 30 days after
|
||||
Your receipt of the notice.
|
||||
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
infringement claim (excluding declaratory judgment actions,
|
||||
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||
directly or indirectly infringes any patent, then the rights granted to
|
||||
You by any and all Contributors for the Covered Software under Section
|
||||
2.1 of this License shall terminate.
|
||||
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||
end user license agreements (excluding distributors and resellers) which
|
||||
have been validly granted by You or Your distributors under this License
|
||||
prior to termination shall survive termination.
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 6. Disclaimer of Warranty *
|
||||
* ------------------------- *
|
||||
* *
|
||||
* Covered Software is provided under this License on an &quot;as is&quot; *
|
||||
* basis, without warranty of any kind, either expressed, implied, or *
|
||||
* statutory, including, without limitation, warranties that the *
|
||||
* Covered Software is free of defects, merchantable, fit for a *
|
||||
* particular purpose or non-infringing. The entire risk as to the *
|
||||
* quality and performance of the Covered Software is with You. *
|
||||
* Should any Covered Software prove defective in any respect, You *
|
||||
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||
* essential part of this License. No use of any Covered Software is *
|
||||
* authorized under this License except under this disclaimer. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 7. Limitation of Liability *
|
||||
* -------------------------- *
|
||||
* *
|
||||
* Under no circumstances and under no legal theory, whether tort *
|
||||
* (including negligence), contract, or otherwise, shall any *
|
||||
* Contributor, or anyone who distributes Covered Software as *
|
||||
* permitted above, be liable to You for any direct, indirect, *
|
||||
* special, incidental, or consequential damages of any character *
|
||||
* including, without limitation, damages for lost profits, loss of *
|
||||
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||
* and all other commercial damages or losses, even if such party *
|
||||
* shall have been informed of the possibility of such damages. This *
|
||||
* limitation of liability shall not apply to liability for death or *
|
||||
* personal injury resulting from such party&#39;s negligence to the *
|
||||
* extent applicable law prohibits such limitation. Some *
|
||||
* jurisdictions do not allow the exclusion or limitation of *
|
||||
* incidental or consequential damages, so this exclusion and *
|
||||
* limitation may not apply to You. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
8. Litigation
|
||||
-------------
|
||||
|
||||
Any litigation relating to this License may be brought only in the
|
||||
courts of a jurisdiction where the defendant maintains its principal
|
||||
place of business and such litigation shall be governed by laws of that
|
||||
jurisdiction, without reference to its conflict-of-law provisions.
|
||||
Nothing in this Section shall prevent a party&#39;s ability to bring
|
||||
cross-claims or counter-claims.
|
||||
|
||||
9. Miscellaneous
|
||||
----------------
|
||||
|
||||
This License represents the complete agreement concerning the subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. Any law or regulation which provides
|
||||
that the language of a contract shall be construed against the drafter
|
||||
shall not be used to construe this License against a Contributor.
|
||||
|
||||
10. Versions of the License
|
||||
---------------------------
|
||||
|
||||
10.1. New Versions
|
||||
|
||||
Mozilla Foundation is the license steward. Except as provided in Section
|
||||
10.3, no one other than the license steward has the right to modify or
|
||||
publish new versions of this License. Each version will be given a
|
||||
distinguishing version number.
|
||||
|
||||
10.2. Effect of New Versions
|
||||
|
||||
You may distribute the Covered Software under the terms of the version
|
||||
of the License under which You originally received the Covered Software,
|
||||
or under the terms of any subsequent version published by the license
|
||||
steward.
|
||||
|
||||
10.3. Modified Versions
|
||||
|
||||
If you create software not governed by this License, and you want to
|
||||
create a new license for such software, you may create and use a
|
||||
modified version of this License if you rename the license and remove
|
||||
any references to the name of the license steward (except to note that
|
||||
such modified license differs from this License).
|
||||
|
||||
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||
Licenses
|
||||
|
||||
If You choose to distribute Source Code Form that is Incompatible With
|
||||
Secondary Licenses under the terms of this version of the License, the
|
||||
notice described in Exhibit B of this License must be attached.
|
||||
|
||||
Exhibit A - Source Code Form License Notice
|
||||
-------------------------------------------
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular
|
||||
file, then You may include the notice in a location (such as a LICENSE
|
||||
file in a relevant directory) where a recipient would be likely to look
|
||||
for such a notice.
|
||||
|
||||
You may add additional accurate notices of copyright ownership.
|
||||
|
||||
Exhibit B - &quot;Incompatible With Secondary Licenses&quot; Notice
|
||||
---------------------------------------------------------
|
||||
|
||||
This Source Code Form is &quot;Incompatible With Secondary Licenses&quot;, as
|
||||
defined by the Mozilla Public License, v. 2.0.
|
||||
</pre></div>
|
||||
</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -1 +0,0 @@
|
|||
<!DOCTYPE html><html><head><link rel="canonical" href="http://spacecowboy.github.io/NoNonsense-FilePicker/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://spacecowboy.github.io/NoNonsense-FilePicker/" /></head></html>
|
||||
|
Before Width: | Height: | Size: 370 KiB |
|
Before Width: | Height: | Size: 370 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/</loc>
|
||||
<lastmod>2016-07-16T17:36:40+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/example/standalone_fragment/</loc>
|
||||
<lastmod>2016-07-16T17:36:40+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_selection_behavior/</loc>
|
||||
<lastmod>2016-07-16T17:35:01+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/example/override_back_button/</loc>
|
||||
<lastmod>2016-07-16T17:33:43+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/example/filter_file_extension/</loc>
|
||||
<lastmod>2016-07-16T17:32:07+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/example/custom_item_layout/</loc>
|
||||
<lastmod>2016-07-16T17:21:28+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/example/sortorder/</loc>
|
||||
<lastmod>2016-07-16T17:10:46+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/changelog/</loc>
|
||||
<lastmod>2016-07-16T17:06:45+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/</loc>
|
||||
<lastmod>2016-07-16T16:42:44+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>http://spacecowboy.github.io/NoNonsense-FilePicker/license/</loc>
|
||||
<lastmod>2016-07-16T16:35:07+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
</urlset>
|
||||
|
|
@ -1,105 +0,0 @@
|
|||
/*
|
||||
* overwrite the current primary color of the
|
||||
* theme that is used as fallback in codeblocks
|
||||
*/
|
||||
.article pre code {
|
||||
color: rgba(0, 0, 0, 0.8) !important;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
HIGHLIGHT.JS THEME
|
||||
|
||||
tweaked version of the Github theme
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display:block;
|
||||
overflow-x:auto;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color:#998;
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag,
|
||||
.hljs-subst {
|
||||
color:#333;
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.hljs-number,
|
||||
.hljs-literal,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-tag .hljs-attr {
|
||||
color:teal;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-doctag {
|
||||
color:#d14;
|
||||
}
|
||||
|
||||
.hljs-title,
|
||||
.hljs-section,
|
||||
.hljs-selector-id {
|
||||
color:#900;
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.hljs-subst {
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.hljs-type,
|
||||
.hljs-class .hljs-title {
|
||||
color:#458;
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.hljs-tag,
|
||||
.hljs-name,
|
||||
.hljs-attribute {
|
||||
color:navy;
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.hljs-regexp,
|
||||
.hljs-link {
|
||||
color:#009926;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet {
|
||||
color:#990073;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-builtin-name {
|
||||
color:#0086b3;
|
||||
}
|
||||
|
||||
.hljs-meta {
|
||||
color:#999;
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.hljs-deletion {
|
||||
background:#fdd;
|
||||
}
|
||||
|
||||
.hljs-addition {
|
||||
background:#dfd;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight:700;
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
/* This file only exists (temporarily) until the
|
||||
custom styling can be replaced with the
|
||||
implementation of the upstream project.
|
||||
*/
|
||||
|
||||
blockquote {
|
||||
padding: 0 20px;
|
||||
margin: 0 0 20px;
|
||||
font-size: inherit;
|
||||
border-left: 5px solid #eee;
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#Mon Aug 22 14:26:52 CEST 2016
|
||||
#Thu May 19 23:54:02 CEST 2016
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
|
||||
|
|
|
|||
|
|
@ -5,16 +5,43 @@ apply plugin: 'com.android.library'
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
// must be applied after your artifact generating plugin (eg. java / com.android.library)
|
||||
apply plugin: 'bintray-release'
|
||||
|
||||
// query git for the the SHA, Tag and commit count. Use these to automate versioning.
|
||||
def gitTag = 'git describe --tags'.execute([], project.rootDir).text.trim()
|
||||
def gitCommitCount =
|
||||
Integer.parseInt('git rev-list --count HEAD'.execute([], project.rootDir).text.trim())
|
||||
|
||||
android {
|
||||
compileSdkVersion compileSdk
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "23.0.2"
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
minSdkVersion 9
|
||||
targetSdkVersion 23
|
||||
versionCode gitCommitCount
|
||||
versionName gitTag
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
|
||||
implementation "com.android.support:support-v4:$supportLibraryVersion"
|
||||
implementation "com.android.support:recyclerview-v7:$supportLibraryVersion"
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
compile 'com.android.support:appcompat-v7:23.4.0'
|
||||
compile 'com.android.support:support-v4:23.4.0'
|
||||
compile 'com.android.support:recyclerview-v7:23.4.0'
|
||||
|
||||
testCompile 'junit:junit:4.12'
|
||||
}
|
||||
|
||||
publish {
|
||||
groupId = 'com.nononsenseapps'
|
||||
artifactId = 'filepicker'
|
||||
publishVersion = gitTag
|
||||
description = 'An extendable Android file/directory-picker you can include in your app'
|
||||
website = 'https://github.com/spacecowboy/NoNonsense-FilePicker'
|
||||
licences = ['MPL-2.0']
|
||||
uploadName = 'com.nononsenseapps:filepicker'
|
||||
bintrayUser = project.hasProperty("BINTRAY_USER")? BINTRAY_USER: "Dummy"
|
||||
bintrayKey = project.hasProperty("BINTRAY_KEY") ? BINTRAY_KEY: "Dummy"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,16 +8,12 @@ package com.nononsenseapps.filepicker;
|
|||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.support.annotation.StyleRes;
|
||||
import android.support.v4.app.DialogFragment;
|
||||
import android.support.v4.app.Fragment;
|
||||
import android.support.v4.app.LoaderManager;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
import android.support.v4.content.Loader;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.support.v7.util.SortedList;
|
||||
|
|
@ -37,11 +33,13 @@ import android.widget.EditText;
|
|||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
import java.net.URI;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
|
||||
import static com.nononsenseapps.filepicker.Utils.appendPath;
|
||||
import static com.nononsenseapps.filepicker.Utils.isValidFileName;
|
||||
|
||||
/**
|
||||
* A fragment representing a list of Files.
|
||||
|
|
@ -51,7 +49,7 @@ import static com.nononsenseapps.filepicker.Utils.appendPath;
|
|||
* OnFilePickedListener}
|
||||
* interface.
|
||||
*/
|
||||
public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
||||
public abstract class AbstractFilePickerFragment<T> extends Fragment
|
||||
implements LoaderManager.LoaderCallbacks<SortedList<T>>,
|
||||
NewItemFragment.OnNewFolderListener, LogicHandler<T> {
|
||||
|
||||
|
|
@ -87,14 +85,12 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
protected FileItemAdapter<T> mAdapter = null;
|
||||
protected TextView mCurrentDirView;
|
||||
protected EditText mEditTextFileName;
|
||||
protected RecyclerView recyclerView;
|
||||
protected LinearLayoutManager layoutManager;
|
||||
protected SortedList<T> mFiles = null;
|
||||
protected Toast mToast = null;
|
||||
// Keep track if we are currently loading a directory, in case it takes a long time
|
||||
protected boolean isLoading = false;
|
||||
protected View mNewFileButtonContainer = null;
|
||||
protected View mRegularButtonContainer = null;
|
||||
private View mNewFileButtonContainer = null;
|
||||
private View mRegularButtonContainer = null;
|
||||
|
||||
/**
|
||||
* Mandatory empty constructor for the fragment manager to instantiate the
|
||||
|
|
@ -117,10 +113,53 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
return new FileItemAdapter<>(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set before making the fragment visible. This method will re-use the existing
|
||||
* arguments bundle in the fragment if it exists so extra arguments will not
|
||||
* be overwritten. This allows you to set any extra arguments in the fragment
|
||||
* constructor if you wish.
|
||||
* <p/>
|
||||
* The key/value-pairs listed below will be overwritten however.
|
||||
*
|
||||
* @param startPath path to directory the picker will show upon start
|
||||
* @param mode what is allowed to be selected (dirs, files, both)
|
||||
* @param allowMultiple selecting a single item or several?
|
||||
* @param allowDirCreate can new directories be created?
|
||||
* @param allowExistingFile if selecting a "new" file, can existing files be chosen
|
||||
* @param singleClick selecting an item does not require a press on OK
|
||||
*/
|
||||
public void setArgs(@Nullable final String startPath, final int mode,
|
||||
final boolean allowMultiple, final boolean allowDirCreate,
|
||||
final boolean allowExistingFile, final boolean singleClick) {
|
||||
// Validate some assumptions so users don't get surprised (or get surprised early)
|
||||
if (mode == MODE_NEW_FILE && allowMultiple) {
|
||||
throw new IllegalArgumentException(
|
||||
"MODE_NEW_FILE does not support 'allowMultiple'");
|
||||
}
|
||||
// Single click only makes sense if we are not selecting multiple items
|
||||
if (singleClick && allowMultiple) {
|
||||
throw new IllegalArgumentException("'singleClick' can not be used with 'allowMultiple'");
|
||||
}
|
||||
// There might have been arguments set elsewhere, if so do not overwrite them.
|
||||
Bundle b = getArguments();
|
||||
if (b == null) {
|
||||
b = new Bundle();
|
||||
}
|
||||
|
||||
if (startPath != null) {
|
||||
b.putString(KEY_START_PATH, startPath);
|
||||
}
|
||||
b.putBoolean(KEY_ALLOW_DIR_CREATE, allowDirCreate);
|
||||
b.putBoolean(KEY_ALLOW_MULTIPLE, allowMultiple);
|
||||
b.putBoolean(KEY_ALLOW_EXISTING_FILE, allowExistingFile);
|
||||
b.putBoolean(KEY_SINGLE_CLICK, singleClick);
|
||||
b.putInt(KEY_MODE, mode);
|
||||
setArguments(b);
|
||||
}
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
getContext().getTheme().applyStyle(getStyleId(), true);
|
||||
final View view = inflater.inflate(R.layout.nnf_fragment_filepicker, container, false);
|
||||
|
||||
Toolbar toolbar = (Toolbar) view.findViewById(R.id.nnf_picker_toolbar);
|
||||
|
|
@ -128,15 +167,13 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
setupToolbar(toolbar);
|
||||
}
|
||||
|
||||
recyclerView = (RecyclerView) view.findViewById(android.R.id.list);
|
||||
RecyclerView recyclerView = (RecyclerView) view.findViewById(android.R.id.list);
|
||||
// improve performance if you know that changes in content
|
||||
// do not change the size of the RecyclerView
|
||||
recyclerView.setHasFixedSize(true);
|
||||
// use a linear layout manager
|
||||
layoutManager = new LinearLayoutManager(getActivity());
|
||||
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
// Set Item Decoration if exists
|
||||
configureItemDecoration(inflater, recyclerView);
|
||||
// Set adapter
|
||||
mAdapter = new FileItemAdapter<>(this);
|
||||
recyclerView.setAdapter(mAdapter);
|
||||
|
|
@ -150,11 +187,11 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
});
|
||||
|
||||
view.findViewById(R.id.nnf_button_ok).setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
onClickOk(v);
|
||||
}
|
||||
});
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
onClickOk(v);
|
||||
}
|
||||
});
|
||||
view.findViewById(R.id.nnf_button_ok_newfile).setOnClickListener(
|
||||
new View.OnClickListener() {
|
||||
@Override
|
||||
|
|
@ -194,22 +231,6 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
return view;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if a divider drawable has been defined in the current theme. If it has, will apply
|
||||
* an item decoration with the divider. If no divider has been specified, then does nothing.
|
||||
*/
|
||||
protected void configureItemDecoration(@NonNull LayoutInflater inflater,
|
||||
@NonNull RecyclerView recyclerView) {
|
||||
final TypedArray attributes =
|
||||
getActivity().obtainStyledAttributes(new int[]{R.attr.nnf_list_item_divider});
|
||||
Drawable divider = attributes.getDrawable(0);
|
||||
attributes.recycle();
|
||||
|
||||
if (divider != null) {
|
||||
recyclerView.addItemDecoration(new DividerItemDecoration(divider));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Called when the cancel-button is pressed.
|
||||
*
|
||||
|
|
@ -218,7 +239,6 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
public void onClickCancel(@NonNull View view) {
|
||||
if (mListener != null) {
|
||||
mListener.onCancelled();
|
||||
dismiss();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -276,10 +296,10 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
mListener.onFilePicked(toUri(getFirstCheckedItem()));
|
||||
}
|
||||
}
|
||||
dismiss();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return filename as entered/picked by the user for the new file
|
||||
*/
|
||||
@NonNull
|
||||
|
|
@ -341,15 +361,10 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDetach() {
|
||||
super.onDetach();
|
||||
mListener = null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
setHasOptionsMenu(true);
|
||||
}
|
||||
|
||||
|
|
@ -369,7 +384,6 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
@Override
|
||||
public void onActivityCreated(Bundle savedInstanceState) {
|
||||
super.onActivityCreated(savedInstanceState);
|
||||
|
||||
// Only if we have no state
|
||||
if (mCurrentPath == null) {
|
||||
if (savedInstanceState != null) {
|
||||
|
|
@ -412,27 +426,25 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
}
|
||||
}
|
||||
|
||||
setModeView(getView());
|
||||
setModeView();
|
||||
|
||||
// If still null
|
||||
if (mCurrentPath == null) {
|
||||
mCurrentPath = getRoot();
|
||||
}
|
||||
refresh(mCurrentPath);
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Hides/Shows appropriate views depending on mode
|
||||
*/
|
||||
protected void setModeView(@NonNull View view) {
|
||||
protected void setModeView() {
|
||||
boolean nf = mode == MODE_NEW_FILE;
|
||||
mNewFileButtonContainer.setVisibility(nf ? View.VISIBLE : View.GONE);
|
||||
mRegularButtonContainer.setVisibility(nf ? View.GONE : View.VISIBLE);
|
||||
|
||||
if (!nf && singleClick) {
|
||||
view.findViewById(R.id.nnf_button_ok).setVisibility(View.GONE);
|
||||
getActivity().findViewById(R.id.nnf_button_ok).setVisibility(View.GONE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -470,6 +482,12 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
b.putInt(KEY_MODE, mode);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDetach() {
|
||||
super.onDetach();
|
||||
mListener = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Refreshes the list. Call this when current path changes. This method also checks
|
||||
* if permissions are granted and requests them if necessary. See hasPermission()
|
||||
|
|
@ -585,7 +603,6 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
@Override
|
||||
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||
View v;
|
||||
getContext().getTheme().applyStyle(getStyleId(), true);
|
||||
switch (viewType) {
|
||||
case LogicHandler.VIEWTYPE_HEADER:
|
||||
v = LayoutInflater.from(getActivity()).inflate(R.layout.nnf_filepicker_listitem_dir,
|
||||
|
|
@ -603,9 +620,6 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
}
|
||||
}
|
||||
|
||||
@StyleRes
|
||||
protected abstract int getStyleId();
|
||||
|
||||
/**
|
||||
* @param vh to bind data from either a file or directory
|
||||
* @param position 0 - n, where the header has been subtracted
|
||||
|
|
@ -827,7 +841,6 @@ public abstract class AbstractFilePickerFragment<T> extends DialogFragment
|
|||
v.setOnLongClickListener(this);
|
||||
icon = v.findViewById(R.id.item_icon);
|
||||
text = (TextView) v.findViewById(android.R.id.text1);
|
||||
text.setTextColor(ContextCompat.getColor(getActivity(), android.R.color.white));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,48 +0,0 @@
|
|||
package com.nononsenseapps.filepicker;
|
||||
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.view.View;
|
||||
|
||||
/**
|
||||
* Basic ItemDecoration which loads a drawable as a divider.
|
||||
*/
|
||||
public class DividerItemDecoration extends RecyclerView.ItemDecoration {
|
||||
private Drawable mDivider;
|
||||
|
||||
public DividerItemDecoration(Drawable divider) {
|
||||
mDivider = divider;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
|
||||
super.getItemOffsets(outRect, view, parent, state);
|
||||
|
||||
if (parent.getChildAdapterPosition(view) == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
outRect.top = mDivider.getIntrinsicHeight();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDraw(Canvas canvas, RecyclerView parent, RecyclerView.State state) {
|
||||
int dividerLeft = parent.getPaddingLeft();
|
||||
int dividerRight = parent.getWidth() - parent.getPaddingRight();
|
||||
|
||||
int childCount = parent.getChildCount();
|
||||
for (int i = 0; i < childCount - 1; i++) {
|
||||
View child = parent.getChildAt(i);
|
||||
|
||||
RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
|
||||
|
||||
int dividerTop = child.getBottom() + params.bottomMargin;
|
||||
int dividerBottom = dividerTop + mDivider.getIntrinsicHeight();
|
||||
|
||||
mDivider.setBounds(dividerLeft, dividerTop, dividerRight, dividerBottom);
|
||||
mDivider.draw(canvas);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.os.Environment;
|
||||
import android.support.annotation.Nullable;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@SuppressLint("Registered")
|
||||
public class FilePickerActivity extends AbstractFilePickerActivity<File> {
|
||||
|
||||
public FilePickerActivity() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected AbstractFilePickerFragment<File> getFragment(
|
||||
@Nullable final String startPath, final int mode, final boolean allowMultiple,
|
||||
final boolean allowCreateDir, final boolean allowExistingFile,
|
||||
final boolean singleClick) {
|
||||
AbstractFilePickerFragment<File> fragment = new FilePickerFragment();
|
||||
// startPath is allowed to be null. In that case, default folder should be SD-card and not "/"
|
||||
fragment.setArgs(startPath != null ? startPath : Environment.getExternalStorageDirectory().getPath(),
|
||||
mode, allowMultiple, allowCreateDir, allowExistingFile, singleClick);
|
||||
return fragment;
|
||||
}
|
||||
}
|
||||
|
|
@ -19,27 +19,26 @@ import android.support.v7.widget.util.SortedListAdapterCallback;
|
|||
import android.widget.Toast;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* An implementation of the picker which allows you to select a file from the internal/external
|
||||
* storage (SD-card) on a device.
|
||||
*/
|
||||
public abstract class FilePickerFragment extends AbstractFilePickerFragment<File> {
|
||||
|
||||
private static final String[] extensions = new String[]{".doc", ".docx", ".xlsx", ".xls", ".png", ".jpg",
|
||||
".tif", ".tiff", ".pdf", ".jpeg", ".ppt", ".pptx"};
|
||||
public class FilePickerFragment extends AbstractFilePickerFragment<File> {
|
||||
|
||||
protected static final int PERMISSIONS_REQUEST_WRITE_EXTERNAL_STORAGE = 1;
|
||||
protected boolean showHiddenItems = false;
|
||||
private File mRequestedPath = null;
|
||||
|
||||
public FilePickerFragment() {
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is used to dictate whether hidden files and folders should be shown or not
|
||||
*
|
||||
* @param showHiddenItems whether hidden items should be shown or not
|
||||
*/
|
||||
public void showHiddenItems(boolean showHiddenItems) {
|
||||
public void showHiddenItems(boolean showHiddenItems){
|
||||
this.showHiddenItems = showHiddenItems;
|
||||
}
|
||||
|
||||
|
|
@ -49,7 +48,7 @@ public abstract class FilePickerFragment extends AbstractFilePickerFragment<File
|
|||
* @return true if hidden items are shown, otherwise false
|
||||
*/
|
||||
|
||||
public boolean areHiddenItemsShown() {
|
||||
public boolean areHiddenItemsShown(){
|
||||
return showHiddenItems;
|
||||
}
|
||||
|
||||
|
|
@ -96,7 +95,6 @@ public abstract class FilePickerFragment extends AbstractFilePickerFragment<File
|
|||
// Treat this as a cancel press
|
||||
if (mListener != null) {
|
||||
mListener.onCancelled();
|
||||
dismiss();
|
||||
}
|
||||
} else { // if (requestCode == PERMISSIONS_REQUEST_WRITE_EXTERNAL_STORAGE) {
|
||||
if (PackageManager.PERMISSION_GRANTED == grantResults[0]) {
|
||||
|
|
@ -110,7 +108,6 @@ public abstract class FilePickerFragment extends AbstractFilePickerFragment<File
|
|||
// Treat this as a cancel press
|
||||
if (mListener != null) {
|
||||
mListener.onCancelled();
|
||||
dismiss();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -239,7 +236,7 @@ public abstract class FilePickerFragment extends AbstractFilePickerFragment<File
|
|||
files.beginBatchedUpdates();
|
||||
if (listFiles != null) {
|
||||
for (java.io.File f : listFiles) {
|
||||
if (isItemVisible(f) && directoryHasNeededFiles(f)) {
|
||||
if (isItemVisible(f)) {
|
||||
files.add(f);
|
||||
}
|
||||
}
|
||||
|
|
@ -295,23 +292,6 @@ public abstract class FilePickerFragment extends AbstractFilePickerFragment<File
|
|||
};
|
||||
}
|
||||
|
||||
private boolean directoryHasNeededFiles(@NonNull final File file) {
|
||||
final File[] fileList = file.listFiles();
|
||||
if (fileList == null) {
|
||||
return isNeededExtension(file.toString());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean isNeededExtension(@NonNull final String fileName) {
|
||||
for (final String extension : extensions) {
|
||||
if (fileName.endsWith(extension) || fileName.endsWith(extension.toUpperCase(Locale.getDefault()))) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Name is validated to be non-null, non-empty and not containing any
|
||||
* slashes.
|
||||
|
|
@ -368,5 +348,4 @@ public abstract class FilePickerFragment extends AbstractFilePickerFragment<File
|
|||
return lhs.getName().compareToIgnoreCase(rhs.getName());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,23 +6,23 @@
|
|||
-->
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<EditText
|
||||
android:id="@+id/edit_text"
|
||||
style="?android:textAppearanceMedium"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
android:fontFamily="light"
|
||||
android:padding="4dp"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:fontFamily="light"
|
||||
android:hint="@string/nnf_name"
|
||||
android:singleLine="true"
|
||||
android:maxLines="1"
|
||||
android:gravity="center_vertical"
|
||||
android:hint="@string/nnf_name"
|
||||
android:imeOptions="actionDone"
|
||||
style="?android:textAppearanceMedium"
|
||||
android:inputType="textAutoComplete|textAutoCorrect"
|
||||
android:padding="4dp"
|
||||
tools:ignore="UnusedAttribute"/>
|
||||
tools:ignore="UnusedAttribute" />
|
||||
</FrameLayout>
|
||||
|
|
@ -5,17 +5,17 @@
|
|||
~ License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
~ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
-->
|
||||
<LinearLayout android:id="@+id/nnf_item_container"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
android:nextFocusRight="@id/checkbox"
|
||||
android:orientation="horizontal">
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/nnf_item_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
android:nextFocusRight="@id/checkbox"
|
||||
android:orientation="horizontal">
|
||||
|
||||
|
||||
<!--suppress AndroidDomInspection -->
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
android:src="@drawable/nnf_ic_folder_black_48dp"
|
||||
android:tint="?attr/nnf_dir_icon_color"
|
||||
android:visibility="visible"
|
||||
tools:ignore="ContentDescription,VectorDrawableCompat" />
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/text1"
|
||||
|
|
@ -38,9 +38,9 @@
|
|||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="@android:color/black"
|
||||
android:maxLines="1"
|
||||
android:padding="8dp"
|
||||
android:singleLine="true"
|
||||
android:text="@string/nnf_name" />
|
||||
|
||||
<CheckBox
|
||||
|
|
@ -51,6 +51,6 @@
|
|||
android:nextFocusRight="@+id/nnf_button_ok"
|
||||
android:paddingEnd="8dp"
|
||||
android:paddingRight="8dp"
|
||||
tools:ignore="RtlSymmetry"/>
|
||||
tools:ignore="RtlSymmetry" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
@ -5,17 +5,17 @@
|
|||
~ License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
~ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
-->
|
||||
<LinearLayout android:id="@+id/nnf_item_container"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
android:nextFocusRight="@+id/nnf_button_ok"
|
||||
android:orientation="horizontal">
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/nnf_item_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
android:nextFocusRight="@+id/nnf_button_ok"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<!--suppress AndroidDomInspection -->
|
||||
<ImageView
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
android:src="@drawable/nnf_ic_folder_black_48dp"
|
||||
android:tint="?attr/nnf_dir_icon_color"
|
||||
android:visibility="visible"
|
||||
tools:ignore="ContentDescription,VectorDrawableCompat"/>
|
||||
tools:ignore="ContentDescription" />
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/text1"
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center_vertical"
|
||||
android:maxLines="1"
|
||||
android:padding="8dp"
|
||||
android:text="@string/nnf_name"
|
||||
android:textColor="@android:color/white"/>
|
||||
|
||||
android:singleLine="true"
|
||||
android:text="@string/nnf_name" />
|
||||
</LinearLayout>
|
||||
|
|
@ -7,9 +7,10 @@
|
|||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".FilePickerActivity">
|
||||
|
||||
<android.support.v7.widget.Toolbar
|
||||
android:id="@+id/nnf_picker_toolbar"
|
||||
|
|
@ -25,14 +26,8 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="start"
|
||||
android:maxLines="1"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
|
||||
tools:ignore="Deprecated"/>
|
||||
<!--
|
||||
suppressing deprecation of singleLine to fix crash related to ellipsize="start", see bug:
|
||||
https://issuetracker.google.com/issues/36950033
|
||||
-->
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"/>
|
||||
</android.support.v7.widget.Toolbar>
|
||||
|
||||
<android.support.v7.widget.RecyclerView
|
||||
|
|
@ -63,8 +58,7 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
android:text="@android:string/cancel"
|
||||
android:textColor="@android:color/white"/>
|
||||
android:text="@android:string/cancel"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/nnf_button_ok"
|
||||
|
|
@ -72,8 +66,7 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
android:text="@android:string/ok"
|
||||
android:textColor="@android:color/white"/>
|
||||
android:text="@android:string/ok"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
|
@ -100,8 +93,7 @@
|
|||
android:layout_height="48dp"
|
||||
android:hint="@android:string/ok"
|
||||
android:src="@drawable/nnf_ic_save_black_24dp"
|
||||
android:tint="?attr/nnf_save_icon_color"
|
||||
tools:ignore="VectorDrawableCompat"/>
|
||||
android:tint="?attr/nnf_save_icon_color"/>
|
||||
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
|
|
|||
|
|
@ -15,6 +15,4 @@
|
|||
<attr name="nnf_save_icon_color" format="color"/>
|
||||
<!-- Color to apply to the directory icons in list -->
|
||||
<attr name="nnf_dir_icon_color" format="color"/>
|
||||
<!-- Drawable to use as a divider between list items (optional) -->
|
||||
<attr name="nnf_list_item_divider" format="reference"/>
|
||||
</resources>
|
||||
|
|
@ -0,0 +1,89 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker;
|
||||
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
|
||||
public class FilePickerFragmentTest {
|
||||
|
||||
private static FilePickerFragment fragment;
|
||||
private static File somePath;
|
||||
private static String someName;
|
||||
|
||||
@BeforeClass
|
||||
public static void runBeforeClass() {
|
||||
// Runs ONCE, before all tests
|
||||
fragment = new FilePickerFragment();
|
||||
someName = "FileName";
|
||||
somePath = new File("/path/to/some/" + someName);
|
||||
}
|
||||
|
||||
@AfterClass
|
||||
public static void runAfterClass() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetName() throws Exception {
|
||||
assertEquals(someName, fragment.getName(somePath));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetParent() throws Exception {
|
||||
assertEquals("/path/to/some", fragment.getParent(somePath).getPath());
|
||||
|
||||
// Self
|
||||
assertEquals(fragment.getRoot().getPath(), fragment.getParent(new File("/path")).getPath());
|
||||
assertEquals(fragment.getRoot().getPath(), fragment.getParent(new File("/")).getPath());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetPath() throws Exception {
|
||||
assertEquals("/some/path", fragment.getPath("/some/path").getPath());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetFullPath() throws Exception {
|
||||
assertEquals("/some/path", fragment.getFullPath(new File("/some/path")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetRoot() throws Exception {
|
||||
assertEquals("/", fragment.getRoot().getPath());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSetArgsMultipleNewFiles() throws Exception {
|
||||
try {
|
||||
fragment.setArgs(null, AbstractFilePickerFragment.MODE_NEW_FILE, true, false, true, false);
|
||||
fail("Expected exception");
|
||||
} catch (IllegalArgumentException e) {
|
||||
assertTrue("Should mention the mode limitations: " + e.getMessage(),
|
||||
e.getMessage().contains("MODE_NEW_FILE"));
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCompareFiles() throws Exception {
|
||||
assertEquals(0, fragment.compareFiles(new File("/A/A"), new File("/A/A")));
|
||||
assertEquals(-1, fragment.compareFiles(new File("/A/A"), new File("/A/B")));
|
||||
assertEquals(1, fragment.compareFiles(new File("/A/B"), new File("/A/A")));
|
||||
|
||||
// Dir is assumed to be the same
|
||||
assertEquals(1, fragment.compareFiles(new File("/A/B"), new File("/B/A")));
|
||||
assertEquals(-1, fragment.compareFiles(new File("/B/A"), new File("/A/B")));
|
||||
assertEquals(0, fragment.compareFiles(new File("/A/B"), new File("/B/B")));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
package com.nononsenseapps.filepicker;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
public class UtilsTest {
|
||||
|
||||
@Test
|
||||
public void appendPathSimple() throws Exception {
|
||||
assertEquals("A/B", Utils.appendPath("A", "B"));
|
||||
assertEquals("A/B", Utils.appendPath("A", "B/"));
|
||||
assertEquals("/A/B", Utils.appendPath("/A", "B"));
|
||||
assertEquals("/A/B/C/D", Utils.appendPath("/A/B", "C/D"));
|
||||
assertEquals("A/B/C/D", Utils.appendPath("A/B", "C/D/"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void appendPathDot() throws Exception {
|
||||
assertEquals("A/./B", Utils.appendPath("A", "./B"));
|
||||
assertEquals("A/./B", Utils.appendPath("A", "./B/"));
|
||||
assertEquals("/A/./B", Utils.appendPath("/A", "./B"));
|
||||
assertEquals("/A/B/./C/D", Utils.appendPath("/A/B", "./C/D"));
|
||||
assertEquals("A/B/./C/D", Utils.appendPath("A/B", "./C/D/"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void appendPathDotDot() throws Exception {
|
||||
assertEquals("A/../B", Utils.appendPath("A", "../B"));
|
||||
assertEquals("A/../B", Utils.appendPath("A", "../B/"));
|
||||
assertEquals("/A/../B", Utils.appendPath("/A", "../B"));
|
||||
assertEquals("/A/B/../C/D", Utils.appendPath("/A/B", "../C/D"));
|
||||
assertEquals("A/B/C/../D", Utils.appendPath("A/B", "C/../D/"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void appendPathRoot() throws Exception {
|
||||
assertEquals("A/B", Utils.appendPath("A", "/B"));
|
||||
assertEquals("/A/B", Utils.appendPath("/A", "/B"));
|
||||
assertEquals("/A/B/C/D", Utils.appendPath("/A/B", "/C/D"));
|
||||
assertEquals("/A/B/C/D", Utils.appendPath("/A/B", "/C/D/"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void appendSlashesSlashesSlashes() throws Exception {
|
||||
assertEquals("A/B", Utils.appendPath("A//", "///B"));
|
||||
assertEquals("/", Utils.appendPath("////", "/////"));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
# SD-card picker
|
||||
|
||||
The sample app demonstrates the SD-card file chooser in action. No configuration is necessary for that.
|
||||
|
||||
|
||||
# Dropbox picker
|
||||
|
||||
If you want to try the Dropbox part of the sample, you'll need to get your own
|
||||
API-keys at [https://www.dropbox.com/developers/apps](https://www.dropbox.com/developers/apps)
|
||||
and insert them into DropboxSyncHelper.java and AndroidManifest.xml. See Dropbox for more details
|
||||
on that:
|
||||
|
||||
<img src="https://raw.githubusercontent.com/spacecowboy/NoNonsense-FilePicker/master/screenshots/dropbox_app_console.png"
|
||||
</img>
|
||||
|
||||
The dropbox sample uses the Core API. If you want to use the Sync API, have look at:
|
||||
|
||||
https://github.com/spacecowboy/NotePad/tree/master/core/src/com/nononsenseapps/filepicker
|
||||
|
||||
for an example of that.
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
def gitTag = 'git describe --tags'.execute([], project.rootDir).text.trim()
|
||||
def gitCommitCount =
|
||||
Integer.parseInt('git rev-list --count HEAD'.execute([], project.rootDir).text.trim())
|
||||
|
||||
android {
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "23.0.2"
|
||||
|
||||
packagingOptions {
|
||||
exclude 'META-INF/LICENSE.txt'
|
||||
exclude 'META-INF/NOTICE.txt'
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
abortOnError false
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 18
|
||||
targetSdkVersion 23
|
||||
versionCode gitCommitCount
|
||||
versionName gitTag
|
||||
//archivesBaseName = "nononsensefilepicker-sample-${gitTag}".toString()
|
||||
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
release {
|
||||
archivesBaseName = "nononsensefilepicker-sample-${gitTag}".toString()
|
||||
//minifyEnabled true
|
||||
//shrinkResources true
|
||||
//proguardFiles getDefaultProguardFile('proguard-android.txt')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
compile project(':library')
|
||||
|
||||
// Image loading sample
|
||||
compile 'com.github.bumptech.glide:glide:3.6.1'
|
||||
|
||||
// FTP browser sample
|
||||
compile 'commons-net:commons-net:3.3'
|
||||
|
||||
// Root example
|
||||
compile 'eu.chainfire:libsuperuser:1.0.0.+'
|
||||
|
||||
// Fast scroll example
|
||||
compile 'com.simplecityapps:recyclerview-fastscroll:1.0.9'
|
||||
|
||||
// UI Tests
|
||||
compile 'com.android.support.test.espresso:espresso-core:2.2.2'
|
||||
compile 'com.android.support.test:runner:0.5'
|
||||
compile 'com.android.support.test.espresso:espresso-contrib:2.2.2'
|
||||
compile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
|
||||
}
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
This project contains annotations derived from JCIP-ANNOTATIONS
|
||||
Copyright (c) 2005 Brian Goetz and Tim Peierls.
|
||||
See http://www.jcip.net and the Creative Commons Attribution License
|
||||
(http://creativecommons.org/licenses/by/2.5)
|
||||
|
||||
|
|
@ -0,0 +1,202 @@
|
|||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
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.
|
||||
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Add project specific ProGuard rules here.
|
||||
# By default, the flags in this file are appended to flags specified
|
||||
# in /home/jonas/android-sdk-linux/tools/proguard/proguard-android.txt
|
||||
# You can edit the include path and order by changing the ProGuard
|
||||
# include property in project.properties.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# Add any project specific keep options here:
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
package com.nononsenseapps.filepicker.sample;
|
||||
|
||||
import android.Manifest;
|
||||
import android.app.Activity;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.os.Build;
|
||||
import android.support.test.uiautomator.UiDevice;
|
||||
import android.support.test.uiautomator.UiObject;
|
||||
import android.support.test.uiautomator.UiObjectNotFoundException;
|
||||
import android.support.test.uiautomator.UiSelector;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
|
||||
import static android.support.test.InstrumentationRegistry.getInstrumentation;
|
||||
|
||||
public class PermissionGranter {
|
||||
|
||||
private static final int PERMISSIONS_DIALOG_DELAY = 3000;
|
||||
private static final int GRANT_BUTTON_INDEX = 1;
|
||||
|
||||
public static void allowPermissionsIfNeeded(Activity activity) {
|
||||
allowPermissionsIfNeeded(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE);
|
||||
}
|
||||
|
||||
public static void allowPermissionsIfNeeded(Activity activity, String permissionNeeded) {
|
||||
try {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && !hasNeededPermission(activity, permissionNeeded)) {
|
||||
sleep(PERMISSIONS_DIALOG_DELAY);
|
||||
UiDevice device = UiDevice.getInstance(getInstrumentation());
|
||||
UiObject allowPermissions = device.findObject(new UiSelector().clickable(true).index(GRANT_BUTTON_INDEX));
|
||||
if (allowPermissions.exists()) {
|
||||
allowPermissions.click();
|
||||
}
|
||||
}
|
||||
} catch (UiObjectNotFoundException e) {
|
||||
System.out.println("There is no permissions dialog to interact with");
|
||||
}
|
||||
}
|
||||
|
||||
private static boolean hasNeededPermission(Activity activity, String permissionNeeded) {
|
||||
int permissionStatus = ContextCompat.checkSelfPermission(activity, permissionNeeded);
|
||||
return permissionStatus == PackageManager.PERMISSION_GRANTED;
|
||||
}
|
||||
|
||||
private static void sleep(long millis) {
|
||||
try {
|
||||
Thread.sleep(millis);
|
||||
} catch (InterruptedException e) {
|
||||
throw new RuntimeException("Cannot execute Thread.sleep()");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,406 @@
|
|||
package com.nononsenseapps.filepicker.sample;
|
||||
|
||||
|
||||
import android.support.test.espresso.ViewInteraction;
|
||||
import android.support.test.rule.ActivityTestRule;
|
||||
import android.support.test.runner.AndroidJUnit4;
|
||||
import android.test.suitebuilder.annotation.LargeTest;
|
||||
|
||||
import static android.support.test.espresso.Espresso.onView;
|
||||
import static android.support.test.espresso.Espresso.pressBack;
|
||||
import static android.support.test.espresso.contrib.RecyclerViewActions.actionOnItemAtPosition;
|
||||
import static android.support.test.espresso.action.ViewActions.*;
|
||||
import static android.support.test.espresso.assertion.ViewAssertions.*;
|
||||
import static android.support.test.espresso.matcher.ViewMatchers.*;
|
||||
|
||||
import com.nononsenseapps.filepicker.sample.R;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import static com.nononsenseapps.filepicker.sample.PermissionGranter.allowPermissionsIfNeeded;
|
||||
import static org.hamcrest.Matchers.allOf;
|
||||
import static org.hamcrest.Matchers.is;
|
||||
|
||||
@LargeTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class SelectNewFile {
|
||||
|
||||
@Rule
|
||||
public ActivityTestRule<NoNonsenseFilePickerTest> mActivityTestRule =
|
||||
new ActivityTestRule<>(NoNonsenseFilePickerTest.class);
|
||||
|
||||
@Before
|
||||
public void allowPermissions() {
|
||||
allowPermissionsIfNeeded(mActivityTestRule.getActivity());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void selectNewFile() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkAllowExistingFile), withText("Allow selection of existing (new) file"), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Click on test dir
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
// sub dir
|
||||
recyclerView.perform(actionOnItemAtPosition(3, click()));
|
||||
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// new file name
|
||||
appCompatEditText.perform(replaceText("testfile"));
|
||||
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// Click ok
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/C-dir/testfile")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void withSingleClick() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkSingleClick), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Navigate to file
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(2, click()));
|
||||
// Click file
|
||||
recyclerView.perform(actionOnItemAtPosition(4, click()));
|
||||
|
||||
// Should have returned
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/B-dir/file-3.txt")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void clickTwiceShouldNotClearFilename() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Navigate to file
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
|
||||
recyclerView.perform(actionOnItemAtPosition(2, click()));
|
||||
|
||||
// Click on file once
|
||||
recyclerView.perform(actionOnItemAtPosition(4, click()));
|
||||
|
||||
// Filename should be entered in field
|
||||
ViewInteraction editText = onView(withId(R.id.nnf_text_filename));
|
||||
editText.check(matches(withText("file-3.txt")));
|
||||
|
||||
// Click twice
|
||||
recyclerView.perform(actionOnItemAtPosition(4, click()));
|
||||
|
||||
// Filename should not change
|
||||
editText.check(matches(withText("file-3.txt")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void enterFileNameWithPathWhichExists() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkAllowExistingFile),
|
||||
withText("Allow selection of existing (new) file"), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Click on test dir
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
|
||||
// Enter path in filename
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// new file name
|
||||
appCompatEditText.perform(replaceText("B-dir/file-3.txt"));
|
||||
|
||||
// Click ok
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
// Should have returned
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/B-dir/file-3.txt")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void enterFileNameWithPathWhichDoesNotExist() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkAllowExistingFile),
|
||||
withText("Allow selection of existing (new) file"), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Click on test dir
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
|
||||
// Enter path in filename
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// new file name
|
||||
appCompatEditText.perform(replaceText("path/to/file"));
|
||||
|
||||
// Click ok
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
// Should have returned
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/path/to/file")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void enterFileNameWithDotDot() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkAllowExistingFile),
|
||||
withText("Allow selection of existing (new) file"), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Click on test dir
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
|
||||
// Enter path in filename
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// new file name
|
||||
appCompatEditText.perform(replaceText("../file.txt"));
|
||||
|
||||
// Click ok
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
// Should have returned
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/../file.txt")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void enterFileNameWithDot() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkAllowExistingFile),
|
||||
withText("Allow selection of existing (new) file"), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Click on test dir
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
|
||||
// Enter path in filename
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// new file name
|
||||
appCompatEditText.perform(replaceText("./file.txt"));
|
||||
|
||||
// Click ok
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
// Should have returned
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/./file.txt")));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void enterFileNameWithRoot() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction checkBox = onView(
|
||||
allOf(withId(R.id.checkAllowExistingFile),
|
||||
withText("Allow selection of existing (new) file"), isDisplayed()));
|
||||
checkBox.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction recyclerView = onView(
|
||||
allOf(withId(android.R.id.list), isDisplayed()));
|
||||
|
||||
// Refresh view (into dir, and out again)
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
recyclerView.perform(actionOnItemAtPosition(0, click()));
|
||||
|
||||
// Click on test dir
|
||||
recyclerView.perform(actionOnItemAtPosition(1, click()));
|
||||
|
||||
// Enter path in filename
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// new file name
|
||||
appCompatEditText.perform(replaceText("/file.txt"));
|
||||
|
||||
// Click ok
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
// Should have returned
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///file.txt")));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
package com.nononsenseapps.filepicker.sample;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.os.Environment;
|
||||
import android.support.test.InstrumentationRegistry;
|
||||
import android.support.test.espresso.ViewInteraction;
|
||||
import android.support.test.rule.ActivityTestRule;
|
||||
import android.support.test.runner.AndroidJUnit4;
|
||||
import android.test.suitebuilder.annotation.LargeTest;
|
||||
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerActivity;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
import static android.support.test.espresso.Espresso.onView;
|
||||
import static android.support.test.espresso.action.ViewActions.click;
|
||||
import static android.support.test.espresso.assertion.ViewAssertions.matches;
|
||||
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
|
||||
import static android.support.test.espresso.matcher.ViewMatchers.withId;
|
||||
import static android.support.test.espresso.matcher.ViewMatchers.withParent;
|
||||
import static android.support.test.espresso.matcher.ViewMatchers.withText;
|
||||
import static com.nononsenseapps.filepicker.sample.PermissionGranter.allowPermissionsIfNeeded;
|
||||
import static org.hamcrest.Matchers.allOf;
|
||||
|
||||
/**
|
||||
* In this class, the activity is launched using an intent pointing to a file.
|
||||
*/
|
||||
@LargeTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class SelectNewFileStartPathIsFile {
|
||||
|
||||
@Rule
|
||||
public ActivityTestRule<NoNonsenseFilePickerTest> mActivityTestRule =
|
||||
new ActivityTestRule<NoNonsenseFilePickerTest>(NoNonsenseFilePickerTest.class) {
|
||||
@Override
|
||||
protected Intent getActivityIntent() {
|
||||
Context targetContext = InstrumentationRegistry.getInstrumentation()
|
||||
.getTargetContext();
|
||||
Intent result = new Intent(targetContext, NoNonsenseFilePickerTest.class);
|
||||
String path = new File(Environment.getExternalStorageDirectory().getAbsoluteFile(),
|
||||
"000000_nonsense-tests/A-dir/file-3.txt").getAbsolutePath();
|
||||
result.putExtra(AbstractFilePickerActivity.EXTRA_START_PATH, path);
|
||||
return result;
|
||||
}
|
||||
};
|
||||
|
||||
@Before
|
||||
public void allowPermissions() {
|
||||
allowPermissionsIfNeeded(mActivityTestRule.getActivity());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void selectNewFileWithStartPath() throws IOException {
|
||||
ViewInteraction radioButton = onView(
|
||||
allOf(withId(R.id.radioNewFile), withText("Select new file"),
|
||||
withParent(withId(R.id.radioGroup)),
|
||||
isDisplayed()));
|
||||
radioButton.perform(click());
|
||||
|
||||
ViewInteraction button = onView(
|
||||
allOf(withId(R.id.button_sd), withText("Pick SD-card"), isDisplayed()));
|
||||
button.perform(click());
|
||||
|
||||
ViewInteraction appCompatEditText = onView(
|
||||
allOf(withId(R.id.nnf_text_filename),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
|
||||
appCompatEditText.check(matches(withText("file-3.txt")));
|
||||
|
||||
ViewInteraction appCompatImageButton = onView(
|
||||
allOf(withId(R.id.nnf_button_ok_newfile),
|
||||
withParent(allOf(withId(R.id.nnf_newfile_button_container),
|
||||
withParent(withId(R.id.nnf_buttons_container)))),
|
||||
isDisplayed()));
|
||||
// Click ok
|
||||
appCompatImageButton.perform(click());
|
||||
|
||||
ViewInteraction textView = onView(withId(R.id.text));
|
||||
textView.check(matches(withText("file:///storage/emulated/0/000000_nonsense-tests/A-dir/file-3.txt")));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ This Source Code Form is subject to the terms of the Mozilla Public
|
||||
~ License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
~ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.nononsenseapps.filepicker.sample">
|
||||
|
||||
<!-- For SD-card -->
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
|
||||
<!-- For Dropbox -->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme"
|
||||
tools:replace="android:label">
|
||||
|
||||
<!-- Sample app -->
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.NoNonsenseFilePicker"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- Sample test app -->
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.NoNonsenseFilePickerTest"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"/>
|
||||
|
||||
<!-- SD-card pickers -->
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.FilePickerActivity"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.FilePickerActivity2"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleThemeLight">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".multimedia.MultimediaPickerActivity"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".multimedia.MultimediaPickerActivity2"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleThemeLight">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".root.SUPickerActivity"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleThemeLight">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".root.SUPickerActivity2"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".fastscroller.FastScrollerFilePickerActivity"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleThemeLight">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".fastscroller.FastScrollerFilePickerActivity2"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.GET_CONTENT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- FtpPickers -->
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme" />
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity2"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleThemeLight" />
|
||||
|
||||
<!-- Dropbox pickers -->
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleTheme">
|
||||
</activity>
|
||||
<activity
|
||||
android:name="com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity2"
|
||||
android:label="@string/title_activity_no_nonsense_file_picker"
|
||||
android:theme="@style/SampleThemeLight">
|
||||
</activity>
|
||||
<!-- Dropbox authenticator -->
|
||||
<activity
|
||||
android:name="com.dropbox.client2.android.AuthActivity"
|
||||
android:configChanges="orientation|keyboard"
|
||||
android:launchMode="singleTask">
|
||||
<intent-filter>
|
||||
<!-- Change this to be db- followed by your app key -->
|
||||
<data android:scheme="db-sm57t7s6lmgj745" />
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker.sample;
|
||||
|
||||
|
||||
import com.nononsenseapps.filepicker.FilePickerActivity;
|
||||
|
||||
/**
|
||||
* This is a copy of the included activity for the sole purpose
|
||||
* of being to show you a second example theme
|
||||
*/
|
||||
public class FilePickerActivity2 extends FilePickerActivity {
|
||||
}
|
||||
|
|
@ -0,0 +1,278 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker.sample;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.app.Activity;
|
||||
import android.content.ClipData;
|
||||
import android.content.Intent;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.RadioGroup;
|
||||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.dropbox.client2.DropboxAPI;
|
||||
import com.dropbox.client2.android.AndroidAuthSession;
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerFragment;
|
||||
import com.nononsenseapps.filepicker.FilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.dropbox.DropboxSyncHelper;
|
||||
import com.nononsenseapps.filepicker.sample.fastscroller.FastScrollerFilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.fastscroller.FastScrollerFilePickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.multimedia.MultimediaPickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.multimedia.MultimediaPickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.root.SUPickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.root.SUPickerActivity2;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
||||
public class NoNonsenseFilePicker extends Activity {
|
||||
|
||||
static final int CODE_SD = 0;
|
||||
static final int CODE_DB = 1;
|
||||
static final int CODE_FTP = 2;
|
||||
TextView textView;
|
||||
DropboxAPI<AndroidAuthSession> mDBApi = null;
|
||||
CheckBox checkAllowCreateDir;
|
||||
CheckBox checkAllowMultiple;
|
||||
CheckBox checkSingleClick;
|
||||
CheckBox checkLightTheme;
|
||||
RadioGroup radioGroup;
|
||||
CheckBox checkAllowExistingFile;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_no_nonsense_file_picker);
|
||||
|
||||
checkAllowCreateDir =
|
||||
(CheckBox) findViewById(R.id.checkAllowCreateDir);
|
||||
checkAllowMultiple =
|
||||
(CheckBox) findViewById(R.id.checkAllowMultiple);
|
||||
checkAllowExistingFile =
|
||||
(CheckBox) findViewById(R.id.checkAllowExistingFile);
|
||||
checkSingleClick =
|
||||
(CheckBox) findViewById(R.id.checkSingleClick);
|
||||
checkLightTheme =
|
||||
(CheckBox) findViewById(R.id.checkLightTheme);
|
||||
radioGroup =
|
||||
(RadioGroup) findViewById(R.id.radioGroup);
|
||||
textView = (TextView) findViewById(R.id.text);
|
||||
|
||||
findViewById(R.id.button_sd)
|
||||
.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
if (checkLightTheme.isChecked()) {
|
||||
startActivity(CODE_SD, FilePickerActivity2.class);
|
||||
} else {
|
||||
startActivity(CODE_SD, FilePickerActivity.class);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
findViewById(R.id.button_image)
|
||||
.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
if (checkLightTheme.isChecked()) {
|
||||
startActivity(CODE_SD, MultimediaPickerActivity2.class);
|
||||
} else {
|
||||
startActivity(CODE_SD, MultimediaPickerActivity.class);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
findViewById(R.id.button_ftp)
|
||||
.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
if (checkLightTheme.isChecked()) {
|
||||
startActivity(CODE_FTP, FtpPickerActivity2.class);
|
||||
} else {
|
||||
startActivity(CODE_FTP, FtpPickerActivity.class);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
findViewById(R.id.button_dropbox)
|
||||
.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
|
||||
// First we must authorize the user
|
||||
if (mDBApi == null) {
|
||||
mDBApi = DropboxSyncHelper
|
||||
.getDBApi(NoNonsenseFilePicker.this);
|
||||
}
|
||||
|
||||
// If not authorized, then ask user for login/permission
|
||||
if (!mDBApi.getSession().isLinked()) {
|
||||
mDBApi.getSession().startOAuth2Authentication(
|
||||
NoNonsenseFilePicker.this);
|
||||
} else { // User is authorized, open file picker
|
||||
Intent i;
|
||||
if (checkLightTheme.isChecked()) {
|
||||
startActivity(CODE_DB, DropboxFilePickerActivity2.class);
|
||||
} else {
|
||||
startActivity(CODE_DB, DropboxFilePickerActivity.class);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
findViewById(R.id.button_root).setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
if (checkLightTheme.isChecked()) {
|
||||
startActivity(CODE_SD, SUPickerActivity.class);
|
||||
} else {
|
||||
startActivity(CODE_SD, SUPickerActivity2.class);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
findViewById(R.id.button_fastscroll).setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
if (checkLightTheme.isChecked()) {
|
||||
startActivity(CODE_SD, FastScrollerFilePickerActivity.class);
|
||||
} else {
|
||||
startActivity(CODE_SD, FastScrollerFilePickerActivity2.class);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
protected void startActivity(final int code, final Class<?> klass) {
|
||||
final Intent i = new Intent(this, klass);
|
||||
|
||||
i.setAction(Intent.ACTION_GET_CONTENT);
|
||||
|
||||
i.putExtra(SUPickerActivity.EXTRA_ALLOW_MULTIPLE,
|
||||
checkAllowMultiple.isChecked());
|
||||
i.putExtra(FilePickerActivity.EXTRA_SINGLE_CLICK,
|
||||
checkSingleClick.isChecked());
|
||||
i.putExtra(SUPickerActivity.EXTRA_ALLOW_CREATE_DIR,
|
||||
checkAllowCreateDir.isChecked());
|
||||
i.putExtra(FilePickerActivity.EXTRA_ALLOW_EXISTING_FILE,
|
||||
checkAllowExistingFile.isChecked());
|
||||
|
||||
// What mode is selected
|
||||
final int mode;
|
||||
switch (radioGroup.getCheckedRadioButtonId()) {
|
||||
case R.id.radioDir:
|
||||
mode = AbstractFilePickerFragment.MODE_DIR;
|
||||
break;
|
||||
case R.id.radioFilesAndDirs:
|
||||
mode = AbstractFilePickerFragment.MODE_FILE_AND_DIR;
|
||||
break;
|
||||
case R.id.radioNewFile:
|
||||
mode = AbstractFilePickerFragment.MODE_NEW_FILE;
|
||||
break;
|
||||
case R.id.radioFile:
|
||||
default:
|
||||
mode = AbstractFilePickerFragment.MODE_FILE;
|
||||
break;
|
||||
}
|
||||
|
||||
i.putExtra(FilePickerActivity.EXTRA_MODE, mode);
|
||||
|
||||
// This line is solely so that test classes can override intents given through UI
|
||||
i.putExtras(getIntent());
|
||||
|
||||
startActivityForResult(i, code);
|
||||
}
|
||||
|
||||
/**
|
||||
* This is entirely for Dropbox's benefit
|
||||
*/
|
||||
protected void onResume() {
|
||||
super.onResume();
|
||||
|
||||
if (mDBApi != null && mDBApi.getSession().authenticationSuccessful()) {
|
||||
try {
|
||||
// Required to complete auth, sets the access token on the session
|
||||
mDBApi.getSession().finishAuthentication();
|
||||
|
||||
String accessToken = mDBApi.getSession().getOAuth2AccessToken();
|
||||
DropboxSyncHelper.saveToken(this, accessToken);
|
||||
} catch (IllegalStateException e) {
|
||||
Log.i("DbAuthLog", "Error authenticating", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onCreateOptionsMenu(Menu menu) {
|
||||
|
||||
// Inflate the menu; this adds items to the action bar if it is present.
|
||||
getMenuInflater().inflate(R.menu.no_nonsense_file_picker, menu);
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onOptionsItemSelected(MenuItem item) {
|
||||
// Handle action bar item clicks here. The action bar will
|
||||
// automatically handle clicks on the Home/Up button, so long
|
||||
// as you specify a parent activity in AndroidManifest.xml.
|
||||
int id = item.getItemId();
|
||||
return id == R.id.action_settings || super.onOptionsItemSelected(item);
|
||||
}
|
||||
|
||||
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
||||
@Override
|
||||
protected void onActivityResult(int requestCode, int resultCode,
|
||||
Intent data) {
|
||||
if ((CODE_SD == requestCode || CODE_DB == requestCode || CODE_FTP == requestCode) &&
|
||||
resultCode == Activity.RESULT_OK) {
|
||||
if (data.getBooleanExtra(FilePickerActivity.EXTRA_ALLOW_MULTIPLE,
|
||||
false)) {
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
||||
ClipData clip = data.getClipData();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
if (clip != null) {
|
||||
for (int i = 0; i < clip.getItemCount(); i++) {
|
||||
sb.append(clip.getItemAt(i).getUri().toString());
|
||||
sb.append("\n");
|
||||
}
|
||||
}
|
||||
|
||||
textView.setText(sb.toString());
|
||||
} else {
|
||||
ArrayList<String> paths = data.getStringArrayListExtra(
|
||||
FilePickerActivity.EXTRA_PATHS);
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
if (paths != null) {
|
||||
for (String path : paths) {
|
||||
sb.append(path);
|
||||
sb.append("\n");
|
||||
}
|
||||
}
|
||||
textView.setText(sb.toString());
|
||||
}
|
||||
} else {
|
||||
textView.setText(data.getData().toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,128 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker.sample;
|
||||
|
||||
import android.Manifest;
|
||||
import android.annotation.TargetApi;
|
||||
import android.app.Activity;
|
||||
import android.content.ClipData;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.os.Environment;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
import android.util.Log;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.RadioGroup;
|
||||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.dropbox.client2.DropboxAPI;
|
||||
import com.dropbox.client2.android.AndroidAuthSession;
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerFragment;
|
||||
import com.nononsenseapps.filepicker.FilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.dropbox.DropboxFilePickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.dropbox.DropboxSyncHelper;
|
||||
import com.nononsenseapps.filepicker.sample.fastscroller.FastScrollerFilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.fastscroller.FastScrollerFilePickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.ftp.FtpPickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.multimedia.MultimediaPickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.multimedia.MultimediaPickerActivity2;
|
||||
import com.nononsenseapps.filepicker.sample.root.SUPickerActivity;
|
||||
import com.nononsenseapps.filepicker.sample.root.SUPickerActivity2;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
|
||||
public class NoNonsenseFilePickerTest extends NoNonsenseFilePicker {
|
||||
private static final int PERMISSIONS_REQUEST_WRITE_EXTERNAL_STORAGE = 0;
|
||||
|
||||
@Override
|
||||
protected void onResume() {
|
||||
super.onResume();
|
||||
|
||||
// Request permission
|
||||
if (hasPermission()) {
|
||||
try {
|
||||
createTestData();
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
} else {
|
||||
requestPermission();
|
||||
}
|
||||
}
|
||||
|
||||
void createTestData() throws IOException {
|
||||
File sdRoot = Environment.getExternalStorageDirectory().getAbsoluteFile();
|
||||
|
||||
File testRoot = new File(sdRoot, "000000_nonsense-tests");
|
||||
|
||||
testRoot.mkdir();
|
||||
assertTrue("Failed to create directory", testRoot.isDirectory());
|
||||
|
||||
List<File> subdirs = Arrays.asList(new File(testRoot, "A-dir"),
|
||||
new File(testRoot, "B-dir"),
|
||||
new File(testRoot, "C-dir"));
|
||||
|
||||
|
||||
for (File subdir : subdirs) {
|
||||
subdir.mkdir();
|
||||
assertTrue("Failed to create sub directory", subdir.isDirectory());
|
||||
|
||||
for (int sf = 0; sf < 10; sf++) {
|
||||
File subfile = new File(subdir, "file-" + sf + ".txt");
|
||||
|
||||
subfile.createNewFile();
|
||||
|
||||
assertTrue("Failed to create file", subfile.isFile());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected boolean hasPermission() {
|
||||
return PackageManager.PERMISSION_GRANTED ==
|
||||
ContextCompat.checkSelfPermission(this,
|
||||
Manifest.permission.WRITE_EXTERNAL_STORAGE);
|
||||
}
|
||||
|
||||
protected void requestPermission() {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||
requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},
|
||||
PERMISSIONS_REQUEST_WRITE_EXTERNAL_STORAGE);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRequestPermissionsResult(int requestCode,
|
||||
@NonNull String[] permissions,
|
||||
@NonNull int[] grantResults) {
|
||||
// If arrays are empty, then process was cancelled
|
||||
if (permissions.length > 0) {
|
||||
if (PackageManager.PERMISSION_GRANTED == grantResults[0]) {
|
||||
try {
|
||||
createTestData();
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker.sample.dropbox;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
|
||||
import com.dropbox.client2.DropboxAPI;
|
||||
import com.dropbox.client2.android.AndroidAuthSession;
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerActivity;
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerFragment;
|
||||
|
||||
|
||||
public class DropboxFilePickerActivity
|
||||
extends AbstractFilePickerActivity<DropboxAPI.Entry> {
|
||||
|
||||
// In the class declaration section:
|
||||
private DropboxAPI<AndroidAuthSession> mDBApi;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle b) {
|
||||
mDBApi = DropboxSyncHelper.getDBApi(this);
|
||||
if (!mDBApi.getSession().isLinked()) {
|
||||
// No valid authentication
|
||||
finish();
|
||||
}
|
||||
|
||||
super.onCreate(b);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected AbstractFilePickerFragment<DropboxAPI.Entry> getFragment(
|
||||
@Nullable final String startPath, final int mode, final boolean allowMultiple,
|
||||
final boolean allowCreateDir, final boolean allowExistingFile,
|
||||
final boolean singleClick) {
|
||||
if (mDBApi == null || !mDBApi.getSession().isLinked()) {
|
||||
// No valid authentication
|
||||
finish();
|
||||
return null;
|
||||
}
|
||||
|
||||
DropboxFilePickerFragment fragment =
|
||||
new DropboxFilePickerFragment(mDBApi);
|
||||
fragment.setArgs(startPath, mode, allowMultiple, allowCreateDir,
|
||||
allowExistingFile, singleClick);
|
||||
return fragment;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker.sample.dropbox;
|
||||
|
||||
/**
|
||||
* This is a copy of the included activity for the sole purpose
|
||||
* of being to show you a second example theme
|
||||
*/
|
||||
public class DropboxFilePickerActivity2 extends DropboxFilePickerActivity {
|
||||
}
|
||||
|
|
@ -0,0 +1,352 @@
|
|||
/*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
package com.nononsenseapps.filepicker.sample.dropbox;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.net.Uri;
|
||||
import android.os.AsyncTask;
|
||||
import android.os.Bundle;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.support.v4.content.AsyncTaskLoader;
|
||||
import android.support.v4.content.Loader;
|
||||
import android.support.v7.util.SortedList;
|
||||
import android.support.v7.widget.LinearLayoutManager;
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.support.v7.widget.Toolbar;
|
||||
import android.support.v7.widget.util.SortedListAdapterCallback;
|
||||
import android.text.TextUtils;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ProgressBar;
|
||||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.dropbox.client2.DropboxAPI;
|
||||
import com.dropbox.client2.android.AndroidAuthSession;
|
||||
import com.dropbox.client2.exception.DropboxException;
|
||||
import com.nononsenseapps.filepicker.AbstractFilePickerFragment;
|
||||
import com.nononsenseapps.filepicker.FileItemAdapter;
|
||||
import com.nononsenseapps.filepicker.sample.R;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@SuppressLint("ValidFragment")
|
||||
public class DropboxFilePickerFragment
|
||||
extends AbstractFilePickerFragment<DropboxAPI.Entry> {
|
||||
|
||||
private final DropboxAPI<AndroidAuthSession> dbApi;
|
||||
private ProgressBar progressBar;
|
||||
private RecyclerView recyclerView;
|
||||
|
||||
@SuppressLint("ValidFragment")
|
||||
public DropboxFilePickerFragment(final DropboxAPI<AndroidAuthSession> api) {
|
||||
super();
|
||||
if (api == null) {
|
||||
throw new NullPointerException("FileSystem may not be null");
|
||||
} else if (!api.getSession().isLinked()) {
|
||||
throw new IllegalArgumentException("Must be linked with Dropbox");
|
||||
}
|
||||
|
||||
this.dbApi = api;
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy paste of normal onCreateView, except we load a different layout, and bind the progress
|
||||
* bar which was added to it.
|
||||
*/
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
// Load the specific layout we created for dropbox/ftp
|
||||
View view = inflater.inflate(R.layout.fragment_loading_filepicker, container, false);
|
||||
|
||||
// And bind the progress bar
|
||||
progressBar = (ProgressBar) view.findViewById(R.id.progressBar);
|
||||
|
||||
Toolbar toolbar =
|
||||
(Toolbar) view.findViewById(com.nononsenseapps.filepicker.R.id.nnf_picker_toolbar);
|
||||
if (toolbar != null) {
|
||||
setupToolbar(toolbar);
|
||||
}
|
||||
|
||||
recyclerView = (RecyclerView) view.findViewById(android.R.id.list);
|
||||
// improve performance if you know that changes in content
|
||||
// do not change the size of the RecyclerView
|
||||
recyclerView.setHasFixedSize(true);
|
||||
// use a linear layout manager
|
||||
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
// Set adapter
|
||||
mAdapter = new FileItemAdapter<>(this);
|
||||
recyclerView.setAdapter(mAdapter);
|
||||
|
||||
view.findViewById(com.nononsenseapps.filepicker.R.id.nnf_button_cancel)
|
||||
.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
onClickCancel(v);
|
||||
}
|
||||
});
|
||||
|
||||
view.findViewById(com.nononsenseapps.filepicker.R.id.nnf_button_ok)
|
||||
.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(final View v) {
|
||||
onClickOk(v);
|
||||
}
|
||||
});
|
||||
|
||||
mCurrentDirView = (TextView) view.findViewById(com.nononsenseapps.filepicker.R.id.nnf_current_dir);
|
||||
// Restore state
|
||||
if (mCurrentPath != null && mCurrentDirView != null) {
|
||||
mCurrentDirView.setText(getFullPath(mCurrentPath));
|
||||
}
|
||||
|
||||
return view;
|
||||
}
|
||||
|
||||
/**
|
||||
* If we are loading, then hide the list and show the progress bar instead.
|
||||
*
|
||||
* @param nextPath path to list files for
|
||||
*/
|
||||
@Override
|
||||
protected void refresh(DropboxAPI.Entry nextPath) {
|
||||
super.refresh(nextPath);
|
||||
if (isLoading) {
|
||||
progressBar.setVisibility(View.VISIBLE);
|
||||
recyclerView.setVisibility(View.INVISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Once loading has finished, show the list and hide the progress bar.
|
||||
*/
|
||||
@Override
|
||||
public void onLoadFinished(Loader<SortedList<DropboxAPI.Entry>> loader, SortedList<DropboxAPI
|
||||
.Entry> data) {
|
||||
progressBar.setVisibility(View.INVISIBLE);
|
||||
recyclerView.setVisibility(View.VISIBLE);
|
||||
super.onLoadFinished(loader, data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Once loading has finished, show the list and hide the progress bar.
|
||||
*/
|
||||
@Override
|
||||
public void onLoaderReset(Loader<SortedList<DropboxAPI.Entry>> loader) {
|
||||
progressBar.setVisibility(View.INVISIBLE);
|
||||
recyclerView.setVisibility(View.VISIBLE);
|
||||
super.onLoaderReset(loader);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onNewFolder(@NonNull final String name) {
|
||||
File folder = new File(mCurrentPath.path, name);
|
||||
new FolderCreator().execute(folder.getPath());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isDir(@NonNull final DropboxAPI.Entry file) {
|
||||
return file.isDir;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public DropboxAPI.Entry getParent(@NonNull final DropboxAPI.Entry from) {
|
||||
// Take care of a slight limitation in Dropbox code:
|
||||
if (from.path.length() > 1 && from.path.endsWith("/")) {
|
||||
from.path = from.path.substring(0, from.path.length() - 1);
|
||||
}
|
||||
String parent = from.parentPath();
|
||||
if (TextUtils.isEmpty(parent)) {
|
||||
parent = "/";
|
||||
}
|
||||
|
||||
return getPath(parent);
|
||||
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public DropboxAPI.Entry getPath(@NonNull final String path) {
|
||||
final DropboxAPI.Entry entry = new DropboxAPI.Entry();
|
||||
entry.path = path;
|
||||
entry.isDir = true;
|
||||
return entry;
|
||||
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public String getFullPath(@NonNull final DropboxAPI.Entry file) {
|
||||
return file.path;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public String getName(@NonNull final DropboxAPI.Entry file) {
|
||||
return file.fileName();
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public DropboxAPI.Entry getRoot() {
|
||||
return getPath("/");
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public Uri toUri(@NonNull final DropboxAPI.Entry file) {
|
||||
return new Uri.Builder().scheme("dropbox").authority("").path(file.path).build();
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public Loader<SortedList<DropboxAPI.Entry>> getLoader() {
|
||||
return new AsyncTaskLoader<SortedList<DropboxAPI.Entry>>(getActivity()) {
|
||||
|
||||
@Override
|
||||
public SortedList<DropboxAPI.Entry> loadInBackground() {
|
||||
SortedList<DropboxAPI.Entry> files = new SortedList<>(DropboxAPI.Entry.class,
|
||||
new SortedListAdapterCallback<DropboxAPI.Entry>(null) {
|
||||
@Override
|
||||
public int compare(DropboxAPI.Entry lhs, DropboxAPI.Entry rhs) {
|
||||
if (isDir(lhs) && !isDir(rhs)) {
|
||||
return -1;
|
||||
} else if (isDir(rhs) && !isDir(lhs)) {
|
||||
return 1;
|
||||
} else {
|
||||
return lhs.fileName().toLowerCase()
|
||||
.compareTo(rhs.fileName().toLowerCase());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onInserted(int position, int count) {
|
||||
// Ignore (DO NOT MODIFY ADAPTER HERE!)
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRemoved(int position, int count) {
|
||||
// Ignore (DO NOT MODIFY ADAPTER HERE!)
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMoved(int fromPosition, int toPosition) {
|
||||
// Ignore (DO NOT MODIFY ADAPTER HERE!)
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onChanged(int position, int count) {
|
||||
// Ignore (DO NOT MODIFY ADAPTER HERE!)
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean areContentsTheSame(DropboxAPI.Entry lhs, DropboxAPI.Entry rhs) {
|
||||
return lhs.fileName().equals(rhs.fileName()) && (lhs.isDir == rhs.isDir);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean areItemsTheSame(DropboxAPI.Entry lhs, DropboxAPI.Entry rhs) {
|
||||
return areContentsTheSame(lhs, rhs);
|
||||
}
|
||||
}, 0);
|
||||
|
||||
try {
|
||||
|
||||
if (!dbApi.metadata(mCurrentPath.path, 1, null, false,
|
||||
null).isDir) {
|
||||
mCurrentPath = getRoot();
|
||||
}
|
||||
|
||||
DropboxAPI.Entry dirEntry =
|
||||
dbApi.metadata(mCurrentPath.path, 0, null, true,
|
||||
null);
|
||||
|
||||
files.beginBatchedUpdates();
|
||||
|
||||
for (DropboxAPI.Entry entry : dirEntry.contents) {
|
||||
if ((mode == MODE_FILE || mode == MODE_FILE_AND_DIR) ||
|
||||
entry.isDir) {
|
||||
files.add(entry);
|
||||
}
|
||||
}
|
||||
|
||||
files.endBatchedUpdates();
|
||||
} catch (DropboxException ignored) {
|
||||
}
|
||||
|
||||
return files;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles a request to start the Loader.
|
||||
*/
|
||||
@Override
|
||||
protected void onStartLoading() {
|
||||
super.onStartLoading();
|
||||
|
||||
if (mCurrentPath == null || !mCurrentPath.isDir) {
|
||||
mCurrentPath = getRoot();
|
||||
}
|
||||
|
||||
forceLoad();
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles a request to completely reset the Loader.
|
||||
*/
|
||||
@Override
|
||||
protected void onReset() {
|
||||
super.onReset();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Dropbox requires stuff to be done in a background thread. Refreshing has to be done on the
|
||||
* UI thread however (it restarts the loader so actual work is done in the background).
|
||||
*/
|
||||
private class FolderCreator extends AsyncTask<String, Void, DropboxAPI.Entry> {
|
||||
@Override
|
||||
protected void onPreExecute() {
|
||||
// Switch to progress bar before starting work
|
||||
progressBar.setVisibility(View.VISIBLE);
|
||||
recyclerView.setVisibility(View.INVISIBLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DropboxAPI.Entry doInBackground(final String... paths) {
|
||||
if (paths.length == 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
String path = paths[0];
|
||||
try {
|
||||
dbApi.createFolder(path);
|
||||
return dbApi.metadata(path, 1, null, false, null);
|
||||
} catch (DropboxException e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onPostExecute(@Nullable DropboxAPI.Entry path) {
|
||||
if (path != null) {
|
||||
goToDir(path);
|
||||
} else {
|
||||
progressBar.setVisibility(View.INVISIBLE);
|
||||
recyclerView.setVisibility(View.VISIBLE);
|
||||
Toast.makeText(getActivity(), R.string.nnf_create_folder_error,
|
||||
Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||