Add site as subfolder

This commit is contained in:
Jonas Kalderstam 2016-08-22 14:00:10 +02:00
parent 41cd5d9a94
commit e6f4f17862
66 changed files with 10783 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "docs-src/themes/hugo-material-docs"]
path = docs-src/themes/hugo-material-docs
url = git@github.com:digitalcraftsman/hugo-material-docs.git

1
docs-src/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public

35
docs-src/Makefile Normal file
View File

@ -0,0 +1,35 @@
.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

View File

@ -0,0 +1,7 @@
+++
[menu.main]
parent = "Examples"
url = "example/"
identifier = ""
weight = 99
+++

75
docs-src/config.toml Normal file
View File

@ -0,0 +1,75 @@
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 = ":slug"
# 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

View File

@ -0,0 +1,263 @@
+++
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)*

View File

@ -0,0 +1,177 @@
+++
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?
![Example of a long filename](/screenshots/itemlayout_longfilename.png)
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;
}
}
```

View File

@ -0,0 +1,95 @@
+++
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;
}
}
```

View File

@ -0,0 +1,92 @@
+++
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 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
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 allowCreateDir) {
currentFragment = new BackHandlingFilePickerFragment();
// startPath is allowed to be null. In that case, default folder should be SD-card and not "/"
currentFragment.setArgs(startPath != null ? startPath : Environment.getExternalStorageDirectory().getPath(),
mode, allowMultiple, allowCreateDir);
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 you custom fragment, implement the goUp and isBackTop methods
```java
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() {
if (getArguments().containsKey(KEY_START_PATH)) {
return getPath(getArguments().getString(KEY_START_PATH));
} else {
return new File("/");
}
}
/**
*
* @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();
}
}
```

View File

@ -0,0 +1,56 @@
+++
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.

View File

@ -0,0 +1,108 @@
+++
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;
}
}
}
```

View File

@ -0,0 +1,48 @@
+++
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);
}
}
```

220
docs-src/content/index.md Normal file
View File

@ -0,0 +1,220 @@
+++
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.

View File

@ -0,0 +1,382 @@
+++
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.
```

View File

@ -0,0 +1,61 @@
.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 */

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

@ -0,0 +1 @@
Subproject commit 1134976b4fcaec84c5862460a85eaf207d8566f8

0
docs/404.html Normal file
View File

831
docs/changelog/index.html Normal file
View File

@ -0,0 +1,831 @@
<!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://localhost:1313/NoNonsense-FilePicker/changelog/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a class="current" title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
<ul id="scrollspy">
</ul>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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&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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

386
docs/changelog/index.xml Normal file
View File

@ -0,0 +1,386 @@
<?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://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/changelog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>ChangeLog</title>
<link>http://localhost:1313/NoNonsense-FilePicker/changelog/</link>
<pubDate>Sat, 16 Jul 2016 17:06:45 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/changelog/</guid>
<description>
&lt;h2 id=&#34;3-0-0-https-github-com-spacecowboy-nononsense-filepicker-tree-3-0-0-2016-07-03&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/3.0.0&#34;&gt;3.0.0&lt;/a&gt; (2016-07-03)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.3...3.0.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Select one file with a single click &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/92&#34;&gt;#92&lt;/a&gt; (&lt;a href=&#34;https://github.com/rastikw&#34;&gt;rastikw&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Add ability to enter a new filename &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/83&#34;&gt;#83&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Closed issues:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add ability to input filename &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/82&#34;&gt;#82&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;2-5-3-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-3-2016-06-09&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.3&#34;&gt;2.5.3&lt;/a&gt; (2016-06-09)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.2...2.5.3&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add paths to permission and refresh methods &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/85&#34;&gt;#85&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Add FastScroller sample implementation &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/89&#34;&gt;#89&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Add a getItem method to FileItemAdapter &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/88&#34;&gt;#88&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Crash while creating folder in dropbox sample &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/76&#34;&gt;#76&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Closed issues:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Fast Scroll &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/87&#34;&gt;#87&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;2-5-2-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-2-2016-02-24&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.2&#34;&gt;2.5.2&lt;/a&gt; (2016-02-24)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.1...2.5.2&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Dropbox should show a progress bar when loading &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/74&#34;&gt;#74&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Dropbox sample can crash due to Inconsistent state in RecyclerView &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/75&#34;&gt;#75&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Dropbox sample crash if multiple press on folder &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/73&#34;&gt;#73&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;probebly underscore missing &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/63&#34;&gt;#63&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Update README.md &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/68&#34;&gt;#68&lt;/a&gt; (&lt;a href=&#34;https://github.com/callmepeanut&#34;&gt;callmepeanut&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;2-5-1-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-1-2016-01-13&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.1&#34;&gt;2.5.1&lt;/a&gt; (2016-01-13)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/2.5.0...2.5.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Change license to MPL &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/66&#34;&gt;#66&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;2-5-0-https-github-com-spacecowboy-nononsense-filepicker-tree-2-5-0-2015-11-08&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/2.5.0&#34;&gt;2.5.0&lt;/a&gt; (2015-11-08)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.2...2.5.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add a separator line above OK/Cancel buttons &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/60&#34;&gt;#60&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Hide hidden files in SD card picker by default &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/58&#34;&gt;#58&lt;/a&gt; (&lt;a href=&#34;https://github.com/dvrajan&#34;&gt;dvrajan&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-4-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-2-2015-09-30&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.2&#34;&gt;v2.4.2&lt;/a&gt; (2015-09-30)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.1...v2.4.2&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;lower minSdk &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/54&#34;&gt;#54&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Spacing of filename items &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/52&#34;&gt;#52&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Lowered minSdk to API 9 &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/55&#34;&gt;#55&lt;/a&gt; (&lt;a href=&#34;https://github.com/marbat87&#34;&gt;marbat87&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Add Video Thumbnail preview and set default theme to light &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/53&#34;&gt;#53&lt;/a&gt; (&lt;a href=&#34;https://github.com/alishari&#34;&gt;alishari&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-4-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-1-2015-09-14&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.1&#34;&gt;v2.4.1&lt;/a&gt; (2015-09-14)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.4.0...v2.4.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Update to latest build tools and support library 23.0.1 &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/51&#34;&gt;#51&lt;/a&gt; (&lt;a href=&#34;https://github.com/alishari&#34;&gt;alishari&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-4-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-4-0-2015-08-25&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.4.0&#34;&gt;v2.4.0&lt;/a&gt; (2015-08-25)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.1...v2.4.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Only allow selecting single files (when EXTRA_ALLOW_MULTIPLE is set to false) &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48&#34;&gt;#48&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make click events overridable &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/49&#34;&gt;#49&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-3-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-3-1-2015-08-20&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.1&#34;&gt;v2.3.1&lt;/a&gt; (2015-08-20)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.3.0...v2.3.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;FilePicker cannot be used with non-touchscreen devices &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/44&#34;&gt;#44&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make list focusable. &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/45&#34;&gt;#45&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-3-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-3-0-2015-08-18&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.3.0&#34;&gt;v2.3.0&lt;/a&gt; (2015-08-18)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.3...v2.3.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make sure to handle Android M&amp;rsquo;s new permission requests &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/24&#34;&gt;#24&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-2-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-3-2015-08-04&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.3&#34;&gt;v2.2.3&lt;/a&gt; (2015-08-04)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.2...v2.2.3&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Enhancement: Allow adding more arguments to FilePickerFragment &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/40&#34;&gt;#40&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Do not override existing arguments &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/41&#34;&gt;#41&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Update travis config to run on faster containers &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/42&#34;&gt;#42&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-2-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-2-2015-08-03&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.2&#34;&gt;v2.2.2&lt;/a&gt; (2015-08-03)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2.1...v2.2.2&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Dropbox Sync API is deprecated &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/35&#34;&gt;#35&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Ensure toasts don&amp;rsquo;t get queued up &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/39&#34;&gt;#39&lt;/a&gt; (&lt;a href=&#34;https://github.com/hcoosthuizen&#34;&gt;hcoosthuizen&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-2-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-1-2015-07-17&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2.1&#34;&gt;v2.2.1&lt;/a&gt; (2015-07-17)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.2...v2.2.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Strange error &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/34&#34;&gt;#34&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-2-2015-07-13&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.2&#34;&gt;v2.2&lt;/a&gt; (2015-07-13)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.1...v2.2&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Allow fragment to be used with default action bar &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/32&#34;&gt;#32&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Allow setting of toolbar text colour &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/31&#34;&gt;#31&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Licence &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/29&#34;&gt;#29&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Specifying GPL3 or later &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/30&#34;&gt;#30&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-1-2015-05-30&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.1&#34;&gt;v2.1&lt;/a&gt; (2015-05-30)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.5...v2.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make filepicker depend only on EXTRA_ALLOW_CREATE_DIR &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/25&#34;&gt;#25&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Build fails &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/21&#34;&gt;#21&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Mention that start-path is configurable &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/20&#34;&gt;#20&lt;/a&gt; (&lt;a href=&#34;https://github.com/spacecowboy&#34;&gt;spacecowboy&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-0-5-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-5-2015-05-01&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.5&#34;&gt;v2.0.5&lt;/a&gt; (2015-05-01)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.4...v2.0.5&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Ic_launcher conflict with app one &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/16&#34;&gt;#16&lt;/a&gt; (&lt;a href=&#34;https://github.com/NitroG42&#34;&gt;NitroG42&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-0-4-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-4-2015-04-29&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.4&#34;&gt;v2.0.4&lt;/a&gt; (2015-04-29)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.3...v2.0.4&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Show miniatures for images &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/10&#34;&gt;#10&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Rotation doesn&amp;rsquo;t work &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/15&#34;&gt;#15&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v2-0-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-3-2015-04-28&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.3&#34;&gt;v2.0.3&lt;/a&gt; (2015-04-28)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.2...v2.0.3&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;v2-0-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-2-2015-04-28&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.2&#34;&gt;v2.0.2&lt;/a&gt; (2015-04-28)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v2.0.0...v2.0.2&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;v2-0-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v2-0-0-2015-04-27&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v2.0.0&#34;&gt;v2.0.0&lt;/a&gt; (2015-04-27)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.2.0...v2.0.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;crash InBackground thread &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/13&#34;&gt;#13&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Crash on root folders &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/12&#34;&gt;#12&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v1-2-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-2-0-2015-04-27&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.2.0&#34;&gt;v1.2.0&lt;/a&gt; (2015-04-27)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.3...v1.2.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Verify Proguard &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/8&#34;&gt;#8&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Upload the Dropbox sample &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/5&#34;&gt;#5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Merged pull requests:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add a Gitter chat badge to README.org &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/11&#34;&gt;#11&lt;/a&gt; (&lt;a href=&#34;https://github.com/gitter-badger&#34;&gt;gitter-badger&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;NPE on empty dir &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/pull/6&#34;&gt;#6&lt;/a&gt; (&lt;a href=&#34;https://github.com/arkty&#34;&gt;arkty&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v1-1-3-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-3-2014-04-02&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.3&#34;&gt;v1.1.3&lt;/a&gt; (2014-04-02)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.2...v1.1.3&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fixed bugs:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;FilePicker: Handle case if startPath does not exist &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/4&#34;&gt;#4&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v1-1-2-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-2-2014-04-02&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.2&#34;&gt;v1.1.2&lt;/a&gt; (2014-04-02)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1.1...v1.1.2&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Upload to Maven Central &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/3&#34;&gt;#3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v1-1-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-1-2014-04-02&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1.1&#34;&gt;v1.1.1&lt;/a&gt; (2014-04-02)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.1...v1.1.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;v1-1-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-1-2014-04-01&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.1&#34;&gt;v1.1&lt;/a&gt; (2014-04-01)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v1.0...v1.1&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implemented enhancements:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add only files option &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/2&#34;&gt;#2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Make create directory toggleable &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/1&#34;&gt;#1&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;v1-0-https-github-com-spacecowboy-nononsense-filepicker-tree-v1-0-2014-04-01&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v1.0&#34;&gt;v1.0&lt;/a&gt; (2014-04-01)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.99...v1.0&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;v0-99-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-99-2014-03-31&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.99&#34;&gt;v0.99&lt;/a&gt; (2014-03-31)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.91...v0.99&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;v0-91-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-91-2014-03-31&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.91&#34;&gt;v0.91&lt;/a&gt; (2014-03-31)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/compare/v0.9...v0.91&#34;&gt;Full Changelog&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;v0-9-https-github-com-spacecowboy-nononsense-filepicker-tree-v0-9-2014-03-31&#34;&gt;&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/tree/v0.9&#34;&gt;v0.9&lt;/a&gt; (2014-03-31)&lt;/h2&gt;
&lt;p&gt;* &lt;em&gt;This Change Log was automatically generated by &lt;a href=&#34;https://github.com/skywinder/Github-Changelog-Generator&#34;&gt;github_changelog_generator&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1,625 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a class="current" title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<ul id="scrollspy">
</ul>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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://localhost:1313/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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

View File

@ -0,0 +1,545 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a class="current" title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<ul id="scrollspy">
</ul>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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&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://localhost:1313/NoNonsense-FilePicker/screenshots/filter_before.png" width="30%" alt="Before"/>
<img src="http://localhost:1313/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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

462
docs/example/index.html Normal file
View File

@ -0,0 +1,462 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
<link href="http://localhost:1313/NoNonsense-FilePicker/example/index.xml" rel="alternate" type="application/rss+xml" title="NoNonsense FilePicker" />
<link href="http://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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://localhost:1313/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&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. 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://localhost:1313/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 &ldquo;..&rdquo;. 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://localhost:1313/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 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 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&lt;File&gt; getFragment( final String startPath, final int mode, final boolean allowMultiple, final boolean allowCreateDir) { currentFragment = new BackHandlingFilePickerFragment(); // startPath is allowed to be null.
<hr>
<a href="http://localhost:1313/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&rsquo;s say that your app can only handle a specific type of file, like .txt-files. Here&rsquo;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 = &quot;.txt&quot;; /** * * @param file * @return The file extension.
<hr>
<a href="http://localhost:1313/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&hellip;. 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://localhost:1313/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() &amp;&amp; !rhs.isDirectory()) { return -1; } else if (rhs.isDirectory() &amp;&amp; !lhs.isDirectory()) { return 1; } // This was the previous behaviour for all file-file comparisons. Now it&#39;s // only done if the files have the same extension, or no extension.
<hr>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

550
docs/example/index.xml Normal file
View File

@ -0,0 +1,550 @@
<?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://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/example/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Standalone fragment</title>
<link>http://localhost:1313/NoNonsense-FilePicker/example/standalone_fragment/</link>
<pubDate>Sat, 16 Jul 2016 17:36:40 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/example/standalone_fragment/</guid>
<description>&lt;p&gt;To use the fragment together with an existing toolbar/action bar, a few things should be overridden.&lt;/p&gt;
&lt;p&gt;Here&amp;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.&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;StandaloneFilePickerFragment&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerFragment &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; Toolbar mToolbar&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;setupToolbar&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;Toolbar toolbar&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Prevent it from being set as main toolbar by NOT calling super.setupToolbar().&lt;/span&gt;
mToolbar &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; toolbar&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;onCreateOptionsMenu&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;Menu menu&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; MenuInflater inflater&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Populate the toolbar with the menu items instead of the action bar.&lt;/span&gt;
mToolbar&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;inflateMenu&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;R&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;menu&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;picker_actions&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Set a menu listener on the toolbar with calls the regular onOptionsItemSelected method.&lt;/span&gt;
mToolbar&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;setOnMenuItemClickListener&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; Toolbar&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;OnMenuItemClickListener&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;onMenuItemClick&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;MenuItem item&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; onOptionsItemSelected&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;item&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;});&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// This is usually handled in onCreateOptions so do it here instead.&lt;/span&gt;
MenuItem item &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; mToolbar&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getMenu&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;findItem&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;com&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;nononsenseapps&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;filepicker&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;R&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;id&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;nnf_action_createdir&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
item&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;setVisible&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;allowCreateDir&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
</description>
</item>
<item>
<title>Override selection behavior</title>
<link>http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/</link>
<pubDate>Sat, 16 Jul 2016 17:35:01 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/</guid>
<description>
&lt;p&gt;New in &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/releases/tag/v2.4.0&#34;&gt;2.4.0&lt;/a&gt; are overridable methods to handle UI-interactions. The following methods are now available for augmentation:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;onClickOK, handles ok button.&lt;/li&gt;
&lt;li&gt;onClickCancel, handles cancel button.&lt;/li&gt;
&lt;li&gt;onClickHeader, handles clicks on &amp;ldquo;..&amp;rdquo;.&lt;/li&gt;
&lt;li&gt;onClickDir, handles clicks on non-selectable items (usually directories).&lt;/li&gt;
&lt;li&gt;onLongClickDir, handles long clicks on non-selectable items.&lt;/li&gt;
&lt;li&gt;onClickCheckable, handles clicks on selectable items.&lt;/li&gt;
&lt;li&gt;onLongClickCheckable, handles long clicks on selectable items.&lt;/li&gt;
&lt;li&gt;onClickCheckBox, handles clicks on the checkbox of selectable items.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Please see the existing implementations before you override any of them.&lt;/p&gt;
&lt;h2 id=&#34;simple-example-make-clicks-instantly-select-items&#34;&gt;Simple example, make clicks instantly select items&lt;/h2&gt;
&lt;p&gt;As asked in &lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/issues/48&#34;&gt;#48&lt;/a&gt;, 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.&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;SingleFilePickerFragment&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerFragment &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;onClickCheckable&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;View v&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; CheckableViewHolder vh&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(!&lt;/span&gt;allowMultiple&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Clear is necessary, in case user clicked some checkbox directly&lt;/span&gt;
mCheckedItems&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;clear&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
mCheckedItems&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;add&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;vh&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;file&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
onClickOk&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;super&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;onClickCheckable&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;v&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; vh&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Now the astute reader might wonder, if my filepicker is only going to be used for selecting single files, why not just do:&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;onClickCheckable&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;View v&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; CheckableViewHolder vh&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;super&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;onClickCheckable&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;v&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; vh&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
onClickOk&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;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&amp;rsquo;t going to be seen and thus you are wasting (not that much) resources. Better to not animate at all in that case.&lt;/p&gt;
</description>
</item>
<item>
<title>Override the back button</title>
<link>http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/</link>
<pubDate>Sat, 16 Jul 2016 17:33:43 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/</guid>
<description>
&lt;p&gt;In case you want the back button navigate the hierarchy instead of instantly exiting the activity, this
is one approach you might take.&lt;/p&gt;
&lt;h2 id=&#34;create-an-activity-which-overrides-the-back-button-and-loads-a-custom-fragment&#34;&gt;Create an activity which overrides the back button, and loads a custom fragment&lt;/h2&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;BackHandlingFilePickerActivity&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerActivity &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * Need access to the fragment&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
BackHandlingFilePickerFragment currentFragment&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * Return a copy of the new fragment and set the variable above.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; AbstractFilePickerFragment&lt;span style=&#34;color: #666666&#34;&gt;&amp;lt;&lt;/span&gt;File&lt;span style=&#34;color: #666666&#34;&gt;&amp;gt;&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;getFragment&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; String startPath&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; mode&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; allowMultiple&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; allowCreateDir&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
currentFragment &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; BackHandlingFilePickerFragment&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// startPath is allowed to be null. In that case, default folder should be SD-card and not &amp;quot;/&amp;quot;&lt;/span&gt;
currentFragment&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;setArgs&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;startPath &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;?&lt;/span&gt; startPath &lt;span style=&#34;color: #666666&#34;&gt;:&lt;/span&gt; Environment&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getExternalStorageDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getPath&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(),&lt;/span&gt;
mode&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; allowMultiple&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; allowCreateDir&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; currentFragment&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * Override the back-button.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;onBackPressed&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// If at top most level, normal behaviour&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;currentFragment&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isBackTop&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;())&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;super&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;onBackPressed&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Else go up&lt;/span&gt;
currentFragment&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;goUp&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h2 id=&#34;in-you-custom-fragment-implement-the-goup-and-isbacktop-methods&#34;&gt;In you custom fragment, implement the goUp and isBackTop methods&lt;/h2&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;BackHandlingFilePickerFragment&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerFragment &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * For consistency, the top level the back button checks against should be the start path.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * But it will fall back on /.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; File &lt;span style=&#34;color: #06287e&#34;&gt;getBackTop&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getArguments&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;containsKey&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;KEY_START_PATH&lt;span style=&#34;color: #666666&#34;&gt;))&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; getPath&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getArguments&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getString&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;KEY_START_PATH&lt;span style=&#34;color: #666666&#34;&gt;));&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; File&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;/&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; *&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @return true if the current path is the startpath or /&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;isBackTop&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;0&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; compareFiles&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;mCurrentPath&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; getBackTop&lt;span style=&#34;color: #666666&#34;&gt;())&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;||&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;0&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; compareFiles&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;mCurrentPath&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; File&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;/&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;));&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * Go up on level, same as pressing on &amp;quot;..&amp;quot;.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;goUp&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
mCurrentPath &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; getParent&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;mCurrentPath&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
mCheckedItems&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;clear&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
mCheckedVisibleViewHolders&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;clear&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
refresh&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
</description>
</item>
<item>
<title>Filter based on file extension</title>
<link>http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/</link>
<pubDate>Sat, 16 Jul 2016 17:32:07 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/</guid>
<description>
&lt;p&gt;By default, the SD-card picker will display all files in alphabetical order. But let&amp;rsquo;s say that your app can only handle a specific type of file, like &lt;code&gt;.txt&lt;/code&gt;-files. Here&amp;rsquo;s a minimal example which will only display such files.&lt;/p&gt;
&lt;p&gt;First, a convenience method to get the extension of files:&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt; &lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// File extension to filter on, including the initial dot.&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;private&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;static&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; String EXTENSION &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;.txt&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; *&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param file&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @return The file extension. If file has no extension, it returns null.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;private&lt;/span&gt; String &lt;span style=&#34;color: #06287e&#34;&gt;getExtension&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@NonNull&lt;/span&gt; File file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
String path &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; file&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getPath&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; i &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; path&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;lastIndexOf&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;.&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;i &lt;span style=&#34;color: #666666&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;0&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; path&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;substring&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;i&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;The decision to display files or not is done with the &lt;code&gt;isItemVisible&lt;/code&gt; method. Just add a check for the file-extension:&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt; &lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;isItemVisible&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; File file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// simplified behavior (see below full code)&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// return isDir(file) || (mode == MODE_FILE || mode == MODE_FILE_AND_DIR);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(!&lt;/span&gt;isDir&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;mode &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; MODE_FILE &lt;span style=&#34;color: #666666&#34;&gt;||&lt;/span&gt; mode &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; MODE_FILE_AND_DIR&lt;span style=&#34;color: #666666&#34;&gt;))&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
String ext &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;file&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; ext &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; EXTENSION&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;equalsIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;ext&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; isDir&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;file&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id=&#34;before-and-after&#34;&gt;Before and After&lt;/h3&gt;
&lt;p&gt;&lt;img src=&#34;http://localhost:1313/NoNonsense-FilePicker/screenshots/filter_before.png&#34; width=&#34;30%&#34; alt=&#34;Before&#34;/&gt;
&lt;img src=&#34;http://localhost:1313/NoNonsense-FilePicker/screenshots/filter_after.png&#34; width=&#34;30%&#34; alt=&#34;After&#34;/&gt;&lt;/p&gt;
&lt;h3 id=&#34;full-fragment-code&#34;&gt;Full Fragment code&lt;/h3&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;import&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;com.nononsenseapps.filepicker.FilePickerFragment&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;import&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;java.io.File&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;FilteredFilePickerFragment&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerFragment &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// File extension to filter on&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;private&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;static&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; String EXTENSION &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;.txt&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; *&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param file&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @return The file extension. If file has no extension, it returns null.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;private&lt;/span&gt; String &lt;span style=&#34;color: #06287e&#34;&gt;getExtension&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@NonNull&lt;/span&gt; File file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
String path &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; file&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getPath&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; i &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; path&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;lastIndexOf&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;.&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;i &lt;span style=&#34;color: #666666&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;0&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; path&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;substring&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;i&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;isItemVisible&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; File file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; ret &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;super&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isItemVisible&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;file&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;ret &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!&lt;/span&gt;isDir&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;mode &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; MODE_FILE &lt;span style=&#34;color: #666666&#34;&gt;||&lt;/span&gt; mode &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; MODE_FILE_AND_DIR&lt;span style=&#34;color: #666666&#34;&gt;))&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
String ext &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;file&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; ext &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; EXTENSION&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;equalsIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;ext&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; ret&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
</description>
</item>
<item>
<title>Custom item layout</title>
<link>http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/</link>
<pubDate>Sat, 16 Jul 2016 17:21:28 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/</guid>
<description>
&lt;p&gt;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 &lt;code&gt;ThisIsAReallyLongFi...&lt;/code&gt;. What if we really wanted it show like in this image?&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;http://localhost:1313/NoNonsense-FilePicker/screenshots/itemlayout_longfilename.png&#34; alt=&#34;Example of a long filename&#34; /&gt;&lt;/p&gt;
&lt;p&gt;The behavior of the text is defined in the listitem layouts:
&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_checkable.xml&#34;&gt;nnf_filepicker_listitem_checkable&lt;/a&gt;
and
&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/res/layout/nnf_filepicker_listitem_dir.xml&#34;&gt;nnf_filepicker_listitem_dir&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;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 &lt;code&gt;..&lt;/code&gt; though you could of course have a special layout for that if you wanted.&lt;/p&gt;
&lt;h3 id=&#34;layouts&#34;&gt;Layouts&lt;/h3&gt;
&lt;p&gt;Let&amp;rsquo;s create some new layouts which will support longer filenames as follows:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;longer_listitem_checkable.xml&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020&#34;&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;LinearLayout&lt;/span&gt; &lt;span style=&#34;color: #4070a0&#34;&gt;xmlns:android=&amp;quot;http://schemas.android.com/apk/res/android&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;xmlns:tools=&amp;quot;http://schemas.android.com/tools&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;match_parent&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;wrap_content&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:background=&amp;quot;?android:selectableItemBackground&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:minHeight=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:orientation=&amp;quot;horizontal&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;&amp;lt;!--suppress AndroidDomInspection --&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;ImageView&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:id=&amp;quot;@+id/item_icon&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:adjustViewBounds=&amp;quot;true&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:scaleType=&amp;quot;fitCenter&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:src=&amp;quot;@drawable/nnf_ic_file_folder&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:tint=&amp;quot;?attr/colorAccent&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:visibility=&amp;quot;visible&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;tools:ignore=&amp;quot;ContentDescription&amp;quot;&lt;/span&gt; &lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;/&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;TextView&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:id=&amp;quot;@android:id/text1&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;style=&amp;quot;?android:textAppearanceLarge&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;0dp&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;wrap_content&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:minHeight=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_weight=&amp;quot;1&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:ellipsize=&amp;quot;end&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:gravity=&amp;quot;center_vertical&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:maxLines=&amp;quot;4&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:padding=&amp;quot;8dp&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;/&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;CheckBox&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:id=&amp;quot;@+id/checkbox&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;wrap_content&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;match_parent&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:paddingEnd=&amp;quot;8dp&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:paddingRight=&amp;quot;8dp&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;tools:ignore=&amp;quot;RtlSymmetry&amp;quot;&lt;/span&gt; &lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;/&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;/LinearLayout&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;longer_listitem_dir.xml&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020&#34;&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;LinearLayout&lt;/span&gt; &lt;span style=&#34;color: #4070a0&#34;&gt;xmlns:android=&amp;quot;http://schemas.android.com/apk/res/android&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;xmlns:tools=&amp;quot;http://schemas.android.com/tools&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;match_parent&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;wrap_content&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:background=&amp;quot;?android:selectableItemBackground&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:minHeight=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:orientation=&amp;quot;horizontal&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;&amp;lt;!--suppress AndroidDomInspection --&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;ImageView&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:id=&amp;quot;@+id/item_icon&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:adjustViewBounds=&amp;quot;true&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:scaleType=&amp;quot;center&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:src=&amp;quot;@drawable/nnf_ic_file_folder&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:tint=&amp;quot;?attr/colorAccent&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:visibility=&amp;quot;visible&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;tools:ignore=&amp;quot;ContentDescription&amp;quot;&lt;/span&gt; &lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;/&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;TextView&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:id=&amp;quot;@android:id/text1&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;style=&amp;quot;?android:textAppearanceLarge&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_width=&amp;quot;0dp&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_height=&amp;quot;wrap_content&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:minHeight=&amp;quot;?android:listPreferredItemHeight&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:layout_weight=&amp;quot;1&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:ellipsize=&amp;quot;end&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:gravity=&amp;quot;center_vertical&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:maxLines=&amp;quot;4&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #4070a0&#34;&gt;android:padding=&amp;quot;8dp&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;/&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color: #062873; font-weight: bold&#34;&gt;&amp;lt;/LinearLayout&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Note that I defined the TextViews to have a maximum of 4 lines (actual number is up to you), and a minimum height of &lt;code&gt;android:listPreferredItemHeight&lt;/code&gt; (this I recommend, otherwise it looks wonky and off-center). And just be clear, the &lt;em&gt;ids&lt;/em&gt; of these fields must be &lt;code&gt;@+id/item_icon&lt;/code&gt;, &lt;code&gt;@android:id/text1&lt;/code&gt;, and &lt;code&gt;@+id/checkbox&lt;/code&gt;, or the code WILL crash on you.&lt;/p&gt;
&lt;h3 id=&#34;code&#34;&gt;Code&lt;/h3&gt;
&lt;p&gt;To use the new layouts, you need to override the &lt;code&gt;onCreateViewHolder&lt;/code&gt; method in
&lt;a href=&#34;https://github.com/spacecowboy/NoNonsense-FilePicker/blob/master/library/src/main/java/com/nononsenseapps/filepicker/AbstractFilePickerFragment.java&#34;&gt;AbstractFilePickerFragment&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Since this example will be browsing the SD-card, I will extend from the built-in FilePickerFragment.&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;CustomLayoutFilePickerFragment&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerFragment &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param parent Containing view&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param viewType which the ViewHolder will contain. Will be one of:&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * [VIEWTYPE_HEADER, VIEWTYPE_CHECKABLE, VIEWTYPE_DIR]. It is OK, and even expected, to use the same&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * layout for VIEWTYPE_HEADER and VIEWTYPE_DIR.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @return a view holder for a file or directory (the difference is presence of checkbox).&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; RecyclerView&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;ViewHolder&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;onCreateViewHolder&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;ViewGroup parent&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; viewType&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
View v&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;switch&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;viewType&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;case&lt;/span&gt; LogicHandler&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;VIEWTYPE_HEADER&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;:&lt;/span&gt;
v &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; LayoutInflater&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;from&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getActivity&lt;span style=&#34;color: #666666&#34;&gt;()).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;inflate&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;R&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;layout&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;longer_listitem_dir&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt;
parent&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;false&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; HeaderViewHolder&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;v&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;case&lt;/span&gt; LogicHandler&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;VIEWTYPE_CHECKABLE&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;:&lt;/span&gt;
v &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; LayoutInflater&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;from&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getActivity&lt;span style=&#34;color: #666666&#34;&gt;()).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;inflate&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;R&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;layout&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;longer_listitem_checkable&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt;
parent&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;false&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; CheckableViewHolder&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;v&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;case&lt;/span&gt; LogicHandler&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;VIEWTYPE_DIR&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;:&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;default&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;:&lt;/span&gt;
v &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; LayoutInflater&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;from&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getActivity&lt;span style=&#34;color: #666666&#34;&gt;()).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;inflate&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;R&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;layout&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;longer_listitem_dir&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt;
parent&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;false&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; DirViewHolder&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;v&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;And as always, to use your custom fragment you need a custom activity which loads it for you:&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;CustomLayoutPickerActivity&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; AbstractFilePickerActivity &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;CustomLayoutPickerActivity&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;super&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; AbstractFilePickerFragment&lt;span style=&#34;color: #666666&#34;&gt;&amp;lt;&lt;/span&gt;File&lt;span style=&#34;color: #666666&#34;&gt;&amp;gt;&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;getFragment&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; String startPath&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; mode&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; allowMultiple&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;final&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;boolean&lt;/span&gt; allowCreateDir&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Load our custom fragment here&lt;/span&gt;
AbstractFilePickerFragment&lt;span style=&#34;color: #666666&#34;&gt;&amp;lt;&lt;/span&gt;File&lt;span style=&#34;color: #666666&#34;&gt;&amp;gt;&lt;/span&gt; fragment &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;new&lt;/span&gt; CustomLayoutFilePickerFragment&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// startPath is allowed to be null. In that case, default folder should be SD-card and not &amp;quot;/&amp;quot;&lt;/span&gt;
fragment&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;setArgs&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;startPath &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;?&lt;/span&gt; startPath &lt;span style=&#34;color: #666666&#34;&gt;:&lt;/span&gt; Environment&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getExternalStorageDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getPath&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(),&lt;/span&gt;
mode&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; allowMultiple&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; allowCreateDir&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; fragment&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
</description>
</item>
<item>
<title>Change the sort order</title>
<link>http://localhost:1313/NoNonsense-FilePicker/example/sortorder/</link>
<pubDate>Sat, 16 Jul 2016 17:10:46 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/example/sortorder/</guid>
<description>
&lt;p&gt;By default, the SD-card picker will display all files in alphabetical order. But what if you want a different sort-order?&lt;/p&gt;
&lt;p&gt;You can override the sorting by overriding the &lt;code&gt;compareFiles&lt;/code&gt;-method:&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt; &lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;compareFiles&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;File lhs&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; File rhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;())&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;())&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// This was the previous behaviour for all file-file comparisons. Now it&amp;#39;s&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// only done if the files have the same extension, or no extension.&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;equalsIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;))&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;||&lt;/span&gt;
getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; lhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getName&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;compareToIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getName&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;());&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Otherwise, we sort on extension placing files with no extension last.&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Both have extension, just compare extensions&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;compareToIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;));&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Left has extension, place it first&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Right has extension, place it first&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id=&#34;before-and-after&#34;&gt;Before and After&lt;/h3&gt;
&lt;p&gt;&lt;img src=&#34;http://localhost:1313/NoNonsense-FilePicker/screenshots/sorting_before.png&#34; width=&#34;30%&#34; alt=&#34;Before&#34;/&gt;
&lt;img src=&#34;http://localhost:1313/NoNonsense-FilePicker/screenshots/sorting_after.png&#34; width=&#34;30%&#34; alt=&#34;After&#34;/&gt;&lt;/p&gt;
&lt;h3 id=&#34;full-fragment-code&#34;&gt;Full Fragment code&lt;/h3&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;import&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;com.nononsenseapps.filepicker.FilePickerFragment&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;import&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;java.io.File&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color: #0e84b5; font-weight: bold&#34;&gt;SortedFilePickerFragment&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;extends&lt;/span&gt; FilePickerFragment &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; *&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param file&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @return The file extension. If file has no extension, it returns null.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;private&lt;/span&gt; String &lt;span style=&#34;color: #06287e&#34;&gt;getExtension&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@NonNull&lt;/span&gt; File file&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
String path &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; file&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getPath&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;();&lt;/span&gt;
&lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; i &lt;span style=&#34;color: #666666&#34;&gt;=&lt;/span&gt; path&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;lastIndexOf&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;&amp;quot;.&amp;quot;&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;i &lt;span style=&#34;color: #666666&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;0&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; path&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;substring&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;i&lt;span style=&#34;color: #666666&#34;&gt;);&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;/**&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * Compare two files to determine their relative sort order. This follows the usual&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * comparison interface. Override to determine your own custom sort order.&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; *&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param lhs File on the &amp;quot;left-hand side&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @param rhs File on the &amp;quot;right-hand side&amp;quot;&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * @return -1 if if lhs should be placed before rhs, 0 if they are equal,&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; * and 1 if rhs should be placed before lhs&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt; */&lt;/span&gt;
&lt;span style=&#34;color: #555555; font-weight: bold&#34;&gt;@Override&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;protected&lt;/span&gt; &lt;span style=&#34;color: #902000&#34;&gt;int&lt;/span&gt; &lt;span style=&#34;color: #06287e&#34;&gt;compareFiles&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;File lhs&lt;span style=&#34;color: #666666&#34;&gt;,&lt;/span&gt; File rhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;())&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;isDirectory&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;())&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// This was the previous behaviour for all file-file comparisons. Now it&amp;#39;s&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// only done if the files have the same extension, or no extension.&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;equalsIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;))&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;||&lt;/span&gt;
getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;==&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; lhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getName&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;().&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;compareToIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;getName&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;());&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Otherwise, we sort on extension placing files with no extension last.&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Both have extension, just compare extensions&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;).&lt;/span&gt;&lt;span style=&#34;color: #4070a0&#34;&gt;compareToIgnoreCase&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;rhs&lt;span style=&#34;color: #666666&#34;&gt;));&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;getExtension&lt;span style=&#34;color: #666666&#34;&gt;(&lt;/span&gt;lhs&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;null&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Left has extension, place it first&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;else&lt;/span&gt; &lt;span style=&#34;color: #666666&#34;&gt;{&lt;/span&gt;
&lt;span style=&#34;color: #60a0b0; font-style: italic&#34;&gt;// Right has extension, place it first&lt;/span&gt;
&lt;span style=&#34;color: #007020; font-weight: bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color: #40a070&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color: #666666&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color: #666666&#34;&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1,544 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a class="current" title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<ul id="scrollspy">
</ul>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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 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%"><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">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> allowCreateDir<span style="color: #666666">)</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>
<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>
currentFragment<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> 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>
</pre></div>
<h2 id="in-you-custom-fragment-implement-the-goup-and-isbacktop-methods">In you custom fragment, implement the goUp and isBackTop methods</h2>
<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">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">if</span> <span style="color: #666666">(</span>getArguments<span style="color: #666666">().</span><span style="color: #4070a0">containsKey</span><span style="color: #666666">(</span>KEY_START_PATH<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: #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> <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: #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"> * @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>
<span style="color: #666666">}</span>
<span style="color: #666666">}</span>
</pre></div>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

View File

@ -0,0 +1,510 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a class="current" title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<ul id="scrollspy">
</ul>
<a title="Standalone fragment" href="http://localhost:1313/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 &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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

View File

@ -0,0 +1,562 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a class="current" title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<ul id="scrollspy">
</ul>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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">&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://localhost:1313/NoNonsense-FilePicker/screenshots/sorting_before.png" width="30%" alt="Before"/>
<img src="http://localhost:1313/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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

View File

@ -0,0 +1,483 @@
<!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://localhost:1313/NoNonsense-FilePicker/example/standalone_fragment/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a class="current" title="Standalone fragment" href="http://localhost:1313/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&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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

BIN
docs/fonts/icon.eot Executable file

Binary file not shown.

22
docs/fonts/icon.svg Executable file
View File

@ -0,0 +1,22 @@
<?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="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe600;" 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="&#xe601;" 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="&#xe602;" 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="&#xe603;" 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="&#xe604;" glyph-name="menu" d="M128 170.667h768v85.333h-768v-85.333zM128 384h768v85.333h-768v-85.333zM128 682.667v-85.333h768v85.333h-768z" />
<glyph unicode="&#xe605;" 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="&#xe606;" 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="&#xe607;" 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="&#xe608;" 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="&#xe609;" 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="&#xe610;" glyph-name="warning" d="M554 340.667v172h-84v-172h84zM554 170.667v86h-84v-86h84zM42 42.667l470 810 470-810h-940z" />
<glyph unicode="&#xe611;" glyph-name="hint" d="M614 682.667h240v-426h-300l-16 84h-240v-298h-84v726h384z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
docs/fonts/icon.ttf Executable file

Binary file not shown.

BIN
docs/fonts/icon.woff Executable file

Binary file not shown.

61
docs/friendly.css Normal file
View File

@ -0,0 +1,61 @@
.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 */

BIN
docs/images/colors.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB

BIN
docs/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
docs/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
docs/images/screen.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

658
docs/index.html Normal file
View File

@ -0,0 +1,658 @@
<!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://localhost:1313/NoNonsense-FilePicker/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/javascripts/modernizr.js"></script>
<link href="http://localhost:1313/NoNonsense-FilePicker/index.xml" rel="alternate" type="application/rss+xml" title="NoNonsense FilePicker" />
<link href="http://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a title="License" href="http://localhost:1313/NoNonsense-FilePicker/license/">
License
</a>
</li>
<li>
<span class="section">Examples</span>
<ul>
<a title="Change the sort order" href="http://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/screenshots/Nexus6-picker-dark.png" width="25%"/>
<img src="http://localhost:1313/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">&#39;com.nononsenseapps:filepicker:3.0.0&#39;</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">&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>
</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">&lt;activity</span>
<span style="color: #4070a0">android:name=&quot;com.nononsenseapps.filepicker.FilePickerActivity&quot;</span>
<span style="color: #4070a0">android:label=&quot;@string/app_name&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;intent-filter&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;action</span> <span style="color: #4070a0">android:name=&quot;android.intent.action.GET_CONTENT&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;category</span> <span style="color: #4070a0">android:name=&quot;android.intent.category.DEFAULT&quot;</span> <span style="color: #062873; font-weight: bold">/&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;/intent-filter&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;/activity&gt;</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">&lt;!-- You can also inherit from NNF_BaseTheme.Light --&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;style</span> <span style="color: #4070a0">name=&quot;FilePickerTheme&quot;</span> <span style="color: #4070a0">parent=&quot;NNF_BaseTheme&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>
<span style="color: #60a0b0; font-style: italic">&lt;!-- Set these to match your theme --&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;colorPrimary&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@color/primary<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;colorPrimaryDark&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@color/primary_dark<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;colorAccent&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@color/accent<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #60a0b0; font-style: italic">&lt;!-- Need to set this also to style create folder dialog --&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;alertDialogTheme&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@style/FilePickerAlertDialogTheme<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #60a0b0; font-style: italic">&lt;!-- If you want to set a specific toolbar theme, do it here --&gt;</span>
<span style="color: #60a0b0; font-style: italic">&lt;!-- &lt;item name=&quot;nnf_toolbarTheme&quot;&gt;@style/ThemeOverlay.AppCompat.Dark.ActionBar&lt;/item&gt; --&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;/style&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;style</span> <span style="color: #4070a0">name=&quot;FilePickerAlertDialogTheme&quot;</span> <span style="color: #4070a0">parent=&quot;Theme.AppCompat.Dialog.Alert&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;colorPrimary&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@color/primary<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;colorPrimaryDark&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@color/primary_dark<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;item</span> <span style="color: #4070a0">name=&quot;colorAccent&quot;</span><span style="color: #062873; font-weight: bold">&gt;</span>@color/accent<span style="color: #062873; font-weight: bold">&lt;/item&gt;</span>
<span style="color: #062873; font-weight: bold">&lt;/style&gt;</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 &quot;/storage/emulated/0/&quot;, but that can</span>
<span style="color: #60a0b0; font-style: italic">// dangerous. Always use Android&#39;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">&amp;&amp;</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">&gt;=</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">&lt;</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">&lt;</span>String<span style="color: #666666">&gt;</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&rsquo;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">&lt;</span>File<span style="color: #666666">&gt;</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">&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">// Only the fragment in this line needs to be changed</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> 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">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

1522
docs/index.xml Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

826
docs/license/index.html Normal file
View File

@ -0,0 +1,826 @@
<!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://localhost:1313/NoNonsense-FilePicker/license/">
<meta name="author" content="SpaceCowboy">
<meta property="og:url" content="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<link rel="icon" type="image/x-icon" href="http://localhost:1313/NoNonsense-FilePicker/images/favicon.ico">
<style>
@font-face {
font-family: 'Icon';
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?52m981');
src: url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.eot?#iefix52m981')
format('embedded-opentype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.woff?52m981')
format('woff'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.ttf?52m981')
format('truetype'),
url('http://localhost:1313/NoNonsense-FilePicker/fonts/icon.svg?52m981#icon')
format('svg');
font-weight: normal;
font-style: normal;
}
</style>
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/application.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/temporary.css">
<link rel="stylesheet" href="http://localhost:1313/NoNonsense-FilePicker/stylesheets/palettes.css">
<link rel="stylesheet" href="http://localhost:1313/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://localhost:1313/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">&ndash;</span>
</a>
</li>
</ul>
<hr>
<div class="toc">
<ul>
<li>
<a title="Readme" href="http://localhost:1313/NoNonsense-FilePicker/readme/">
Readme
</a>
</li>
<li>
<a title="Changelog" href="http://localhost:1313/NoNonsense-FilePicker/changelog/">
Changelog
</a>
</li>
<li>
<a class="current" title="License" href="http://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/example/sortorder/">
Change the sort order
</a>
<a title="Filter based on file extension" href="http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/">
Filter based on file extension
</a>
<a title="Custom item layout" href="http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/">
Custom item layout
</a>
<a title="Override the back button" href="http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/">
Override the back button
</a>
<a title="Override selection behavior" href="http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/">
Override selection behavior
</a>
<a title="Standalone fragment" href="http://localhost:1313/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 &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>
<aside class="copyright" role="note">
&copy; 2016 Released under the Mozilla Public License 2.0 &ndash;
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://localhost:1313/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:\/\/localhost:1313\/NoNonsense-FilePicker\/';
var repo_id = 'spacecowboy\/NoNonsense-FilePicker';
</script>
<script src="http://localhost:1313/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 = ":slug";
headers[i].appendChild(a);
}
}
</script>
<script src="//gohugo.io/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>
</html>

397
docs/license/index.xml Normal file
View File

@ -0,0 +1,397 @@
<?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://localhost:1313/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://localhost:1313/NoNonsense-FilePicker/license/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>License</title>
<link>http://localhost:1313/NoNonsense-FilePicker/license/</link>
<pubDate>Sat, 16 Jul 2016 16:35:07 +0200</pubDate>
<guid>http://localhost:1313/NoNonsense-FilePicker/license/</guid>
<description>&lt;p&gt;Copyright &amp;copy; 2016 Jonas Kalderstam &lt;a href=&#34;mailto:jonas@cowboyprogrammer.org&#34;&gt;jonas@cowboyprogrammer.org&lt;/a&gt;&lt;/p&gt;
&lt;div class=&#34;highlight&#34; style=&#34;background: #f0f0f0&#34;&gt;&lt;pre style=&#34;line-height: 125%&#34;&gt;&lt;span&gt;&lt;/span&gt;Mozilla Public License Version 2.0
==================================
1. Definitions
--------------
1.1. &amp;quot;Contributor&amp;quot;
means each individual or legal entity that creates, contributes to
the creation of, or owns Covered Software.
1.2. &amp;quot;Contributor Version&amp;quot;
means the combination of the Contributions of others (if any) used
by a Contributor and that particular Contributor&amp;#39;s Contribution.
1.3. &amp;quot;Contribution&amp;quot;
means Covered Software of a particular Contributor.
1.4. &amp;quot;Covered Software&amp;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. &amp;quot;Incompatible With Secondary Licenses&amp;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. &amp;quot;Executable Form&amp;quot;
means any form of the work other than Source Code Form.
1.7. &amp;quot;Larger Work&amp;quot;
means a work that combines Covered Software with other material, in
a separate file or files, that is not Covered Software.
1.8. &amp;quot;License&amp;quot;
means this document.
1.9. &amp;quot;Licensable&amp;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. &amp;quot;Modifications&amp;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. &amp;quot;Patent Claims&amp;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. &amp;quot;Secondary License&amp;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. &amp;quot;Source Code Form&amp;quot;
means the form of the work preferred for making modifications.
1.14. &amp;quot;You&amp;quot; (or &amp;quot;Your&amp;quot;)
means an individual or a legal entity exercising rights under this
License. For legal entities, &amp;quot;You&amp;quot; includes any entity that
controls, is controlled by, or is under common control with You. For
purposes of this definition, &amp;quot;control&amp;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&amp;#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&amp;#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&amp;#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 &amp;quot;as is&amp;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&amp;#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&amp;#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 - &amp;quot;Incompatible With Secondary Licenses&amp;quot; Notice
---------------------------------------------------------
This Source Code Form is &amp;quot;Incompatible With Secondary Licenses&amp;quot;, as
defined by the Mozilla Public License, v. 2.0.
&lt;/pre&gt;&lt;/div&gt;
</description>
</item>
</channel>
</rss>

1
docs/readme/index.html Normal file
View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><link rel="canonical" href="http://localhost:1313/NoNonsense-FilePicker/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://localhost:1313/NoNonsense-FilePicker/" /></head></html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

54
docs/sitemap.xml Normal file
View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/</loc>
<lastmod>2016-07-16T17:36:40+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/example/standalone_fragment/</loc>
<lastmod>2016-07-16T17:36:40+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/example/override_selection_behavior/</loc>
<lastmod>2016-07-16T17:35:01+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/example/override_back_button/</loc>
<lastmod>2016-07-16T17:33:43+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/example/filter_file_extension/</loc>
<lastmod>2016-07-16T17:32:07+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/example/custom_item_layout/</loc>
<lastmod>2016-07-16T17:21:28+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/example/sortorder/</loc>
<lastmod>2016-07-16T17:10:46+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/changelog/</loc>
<lastmod>2016-07-16T17:06:45+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/</loc>
<lastmod>2016-07-16T16:42:44+02:00</lastmod>
</url>
<url>
<loc>http://localhost:1313/NoNonsense-FilePicker/license/</loc>
<lastmod>2016-07-16T16:35:07+02:00</lastmod>
</url>
</urlset>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,105 @@
/*
* 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;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
/* 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;
}