TT File Selector

TT File Selector Free Theme

Rated 4.50/5 (4) —  Free Android application by (T_T)

About TT File Selector

This is file select application.
It assumes that this application is implicitly called from external application.
Since a background color and a text color can be set up, if the application and the color under development are united, a file selection function is realizable comfortable.

If you call this application from launcher, you just find "File reference"(T_T)

Specifications:
OS Version : Over 2.1
scheme : file
ActionType : action.PICK

uri parameters:
path : First directory.

QueryParameter:
only_directory : If true, only directory is shown.
bgcolor : The Background color.
The format is ARGB such as "FF000000"
fgcolor : The Text color.
The format is ARGB such as "FF000000"
multiple : If true, multiple select is enabled.

Example:
sample1: simple call.
Uri uri = Uri.fromFile
(Environment.getExternalStorageDirectory() );

Intent i = new Intent( Intent.ACTION_PICK, uri );
startActivityForResult( i, 1 );

sample2: Set options.
Uri.Builder b = new Uri.Builder();
b.scheme( "file" );
b.path( "/mnt/sdcard" );
b.appendQueryParameter( "only_directory", "true" );
b.appendQueryParameter( "multiple", "true" );
b.appendQueryParameter( "bgcolor", "FFFFFFFF" );
b.appendQueryParameter( "fgcolor", "FF000000" );
Uri uri = b.build();
Intent i = new Intent( Intent.ACTION_PICK, uri );
startActivityForResult( i, 1 );

sample3: Getting result.( For single select )
protected void onActivityResult
(int requestCode, int resultCode, Intent data) {
if ( resultCode == RESULT_OK ) {
Uri uri = data.getData();
String selectedPath = uri.getPath();
}
}

sample4: Getting result.( For multiple select )
protected void onActivityResult
(int requestCode, int resultCode, Intent data) {
if ( resultCode == RESULT_OK ) {
Uri uri = data.getData();
ListpathList = uri.getPathSegments();
StringBuilder sb = new StringBuilder();
for ( String path : pathList ) {
sb.append( path ).append( "n" );
}
String multiSelectPath = sb.toString();
}
}

Future:
User request, if it is.

How to Download / Install

Download and install TT File Selector version 2.2 on your Android device!
Downloaded 500+ times, content rating: Not rated
Android package: jp.ne.biglobe.mta.t_ttoshi.fileselect, download TT File Selector.apk

All Application Badges

Free
downl.
Android
2.1+
n/a
Not
rated
Theme /
Wallpap.

Theme History & Updates

What's Changed
・Multiple Select.
・Sort by Name.
・Show message at the time of the file selection which cannot be accessed.
More downloads  TT File Selector reached 500 - 1 000 downloads
More downloads  TT File Selector reached 100 - 500 downloads

Oh snap! No comments are available for TT File Selector at the moment. Be the first to leave one!

Share The Word!


Rating Distribution

RATING
4.55
4 users

5

4

3

2

1