ہم آپ کے صارف کے تجربے کو بہتر بنانے کے لیے اس ویب سائٹ پر کوکیز اور دیگر ٹیکنالوجیز کا استعمال کرتے ہیں۔
اس صفحے پر کسی بھی لنک پر کلک کرکے آپ ہماری رازداری کی پالیسی اور کوکیز پالیسی پر متفق ہو رہے ہیں۔
ٹھیک ہے میں متفق ہوں مزید جانیں
TT File Selector آئیکن

2.2 by (T_T)


Aug 9, 2016

About TT File Selector

English

This is file select application.

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.

میں نیا کیا ہے 2.2 تازہ ترین ورژن

Last updated on Aug 9, 2016

・Multiple Select.
・Sort by Name.
・Show message at the time of the file selection which cannot be accessed.

ترجمہ لوڈ ہو رہا ہے...

معلومات ایپ اضافی

تازہ ترین ورژن

TT File Selector اپ ڈیٹ کی درخواست کریں 2.2

اپ لوڈ کردہ

Clark Gracia Passe

Android درکار ہے

Android 2.1+

مزید دکھائیں

TT File Selector اسکرین شاٹس

تبصرہ لوڈ ہو رہا ہے...
زبانیں
زبانیں
APKPure کو سبسکرائب کریں
ابتدائی ریلیز ، خبروں ، اور بہترین اینڈروئیڈ گیمز اور ایپس کے رہنماؤں تک رسائی حاصل کرنے والے پہلے بنیں۔
نہیں شکریہ
سائن اپ
کامیابی کے ساتھ سبسکرائب!
اب آپ کو اپک پور کی سبسکرائب کیا گیا ہے۔
APKPure کو سبسکرائب کریں
ابتدائی ریلیز ، خبروں ، اور بہترین اینڈروئیڈ گیمز اور ایپس کے رہنماؤں تک رسائی حاصل کرنے والے پہلے بنیں۔
نہیں شکریہ
سائن اپ
کامیابی!
اب آپ ہمارے نیوز لیٹر کی رکنیت لے چکے ہیں۔