├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable-xhdpi │ │ │ │ ├── tab_up.9.png │ │ │ │ ├── title_bg.png │ │ │ │ ├── back_normal.png │ │ │ │ ├── back_pressed.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── next_normal.png │ │ │ │ ├── next_pressed.png │ │ │ │ ├── tab_down.9.png │ │ │ │ ├── tab_middle.9.png │ │ │ │ ├── tab_normal.png │ │ │ │ ├── common_input.9.png │ │ │ │ ├── iboxiao_normal.png │ │ │ │ ├── setting_normal.png │ │ │ │ ├── bxfile_file_apk.png │ │ │ │ ├── bxfile_file_dir.png │ │ │ │ ├── bxfile_file_doc.png │ │ │ │ ├── bxfile_file_html.png │ │ │ │ ├── bxfile_file_jpg.png │ │ │ │ ├── bxfile_file_mp3.png │ │ │ │ ├── bxfile_file_pdf.png │ │ │ │ ├── bxfile_file_ppt.png │ │ │ │ ├── bxfile_file_txt.png │ │ │ │ ├── bxfile_file_video.png │ │ │ │ ├── bxfile_file_xls.png │ │ │ │ ├── bxfile_file_zip.png │ │ │ │ ├── iboxiao_choosed.png │ │ │ │ ├── myschool_choosed.png │ │ │ │ ├── myschool_normal.png │ │ │ │ ├── privatemsg_normal.png │ │ │ │ ├── setting_choosed.png │ │ │ │ ├── tab_up_pressed.9.png │ │ │ │ ├── url_image_failed.png │ │ │ │ ├── bx_bottom_msg_bg.9.png │ │ │ │ ├── bxfile_file_unknow.png │ │ │ │ ├── ic_launcher_offline.png │ │ │ │ ├── privatemsg_choosed.png │ │ │ │ ├── tab_down_pressed.9.png │ │ │ │ ├── bxfile_file_icon_music.png │ │ │ │ ├── bxfile_file_icon_ram.png │ │ │ │ ├── bxfile_file_icon_video.png │ │ │ │ ├── bxfile_list_checkbox.png │ │ │ │ ├── tab_middle_pressed.9.png │ │ │ │ ├── bxfile_file_default_pic.jpg │ │ │ │ ├── bxfile_file_icon_picture.png │ │ │ │ ├── bxfile_file_icon_sdcard.png │ │ │ │ ├── bxfile_arrow_right_normal.png │ │ │ │ ├── bxfile_arrow_right_pressed.png │ │ │ │ ├── bxfile_file_icon_download.png │ │ │ │ ├── bxfile_file_no_file_record.png │ │ │ │ └── bxfile_list_checkbox_selected.png │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ │ ├── corner_purple_bg.xml │ │ │ │ ├── corner_yellow_bg.xml │ │ │ │ ├── corner_solidblue_only.xml │ │ │ │ ├── corner_gray_only.xml │ │ │ │ ├── next_btn.xml │ │ │ │ ├── selector_back.xml │ │ │ │ ├── corner_btn_bg.xml │ │ │ │ ├── fileexplorer_item_bg.xml │ │ │ │ ├── localefile_send_bg.xml │ │ │ │ ├── localefile_cb_bg.xml │ │ │ │ ├── selector_tab_up.xml │ │ │ │ ├── selector_tab_down.xml │ │ │ │ └── selector_tab_middle.xml │ │ │ ├── color │ │ │ │ └── localefile_send_color.xml │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── color.xml │ │ │ │ └── styles.xml │ │ │ ├── layout │ │ │ │ ├── gallery_item.xml │ │ │ │ ├── localfile_bottom.xml │ │ │ │ ├── localefile_gallery.xml │ │ │ │ ├── localefile_browser.xml │ │ │ │ ├── bxfile_viewer.xml │ │ │ │ ├── locale_file_item.xml │ │ │ │ └── localefile_main.xml │ │ │ └── values-en │ │ │ │ └── strings.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── tracy │ │ │ │ └── fileexplorer │ │ │ │ ├── util │ │ │ │ ├── Utils.java │ │ │ │ ├── Constants.java │ │ │ │ ├── TimeUtils.java │ │ │ │ ├── MIMEUtils.java │ │ │ │ └── FileUtils.java │ │ │ │ ├── FEApplication.java │ │ │ │ ├── BaseActivity.java │ │ │ │ ├── LocaleFileAdapter.java │ │ │ │ ├── TFileViewer.java │ │ │ │ ├── TFile.java │ │ │ │ ├── LocaleMediaFileBrowser.java │ │ │ │ ├── FileManager.java │ │ │ │ ├── LocaleFileMain.java │ │ │ │ ├── SyncImageLoader.java │ │ │ │ ├── LocaleFileBrowser.java │ │ │ │ └── LocaleFileGallery.java │ │ └── AndroidManifest.xml │ └── androidTest │ │ └── java │ │ └── com │ │ └── tracy │ │ └── fileexplorer │ │ └── ApplicationTest.java ├── build.gradle ├── proguard-rules.pro └── app.iml ├── settings.gradle ├── .gradle └── 2.3 │ └── taskArtifacts │ ├── cache.properties │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── taskArtifacts.bin │ ├── cache.properties.lock │ └── outputFileStates.bin ├── screenshot.png ├── .idea ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── misc.xml ├── libraries │ ├── support_annotations_21_0_3.xml │ ├── appcompat_v7_21_0_3.xml │ └── support_v4_21_0_3.xml ├── modules.xml ├── gradle.xml └── compiler.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── local.properties ├── README.md ├── gradle.properties ├── FileExplorer.iml ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.gradle/2.3/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 08 15:58:39 CST 2015 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/screenshot.png -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gradle/2.3/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/.gradle/2.3/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/2.3/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/.gradle/2.3/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/2.3/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/.gradle/2.3/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_up.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_up.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/title_bg.png -------------------------------------------------------------------------------- /.gradle/2.3/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/.gradle/2.3/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /.gradle/2.3/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/.gradle/2.3/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/back_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/back_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/next_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/next_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/next_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_down.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_down.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_middle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_middle.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/common_input.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/common_input.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/iboxiao_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/iboxiao_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/setting_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/setting_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_apk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_dir.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_doc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_html.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_jpg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_mp3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_pdf.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_ppt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_txt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_xls.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_zip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/iboxiao_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/iboxiao_choosed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/myschool_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/myschool_choosed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/myschool_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/myschool_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/privatemsg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/privatemsg_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/setting_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/setting_choosed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_up_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_up_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/url_image_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/url_image_failed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bx_bottom_msg_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bx_bottom_msg_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_unknow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_unknow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher_offline.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/privatemsg_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/privatemsg_choosed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_down_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_down_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_icon_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_icon_music.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_icon_ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_icon_ram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_icon_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_icon_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_list_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_list_checkbox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_middle_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/tab_middle_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_default_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_default_pic.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_icon_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_icon_picture.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_icon_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_icon_sdcard.png -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_arrow_right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_arrow_right_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_arrow_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_arrow_right_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_icon_download.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_file_no_file_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_file_no_file_record.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bxfile_list_checkbox_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyZhangLei/FileExplorer/HEAD/app/src/main/res/drawable-xhdpi/bxfile_list_checkbox_selected.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/corner_purple_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/corner_yellow_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/corner_solidblue_only.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/corner_gray_only.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/color/localefile_send_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/next_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_back.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/corner_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/fileexplorer_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/localefile_send_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/localefile_cb_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_21_0_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_tab_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_tab_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_tab_middle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/tracy/fileexplorer/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.tracy.fileexplorer; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_21_0_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | ## This file is automatically generated by Android Studio. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file should *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | # 7 | # Location of the SDK. This is only used by Gradle. 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Users/tracy/tools/adt-bundle-mac/sdk -------------------------------------------------------------------------------- /app/src/main/java/com/tracy/fileexplorer/util/Utils.java: -------------------------------------------------------------------------------- 1 | package com.tracy.fileexplorer.util; 2 | 3 | import android.app.Activity; 4 | import android.view.Display; 5 | import android.view.WindowManager; 6 | 7 | public class Utils { 8 | 9 | /** 10 | * @param cxt 11 | * @return 屏幕宽 12 | */ 13 | public static int getScreenWidth(Activity cxt) { 14 | WindowManager m = cxt.getWindowManager(); 15 | Display d = m.getDefaultDisplay(); 16 | return d.getWidth(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/tracy/fileexplorer/FEApplication.java: -------------------------------------------------------------------------------- 1 | package com.tracy.fileexplorer; 2 | 3 | import java.util.concurrent.ExecutorService; 4 | import java.util.concurrent.Executors; 5 | 6 | import android.app.Application; 7 | 8 | public class FEApplication extends Application { 9 | 10 | private ExecutorService es = Executors.newFixedThreadPool(3); 11 | 12 | // app对外 执行任务入口 13 | public void execRunnable(Runnable r) { 14 | if (!es.isShutdown()) { 15 | es.execute(r); 16 | } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/tracy/fileexplorer/util/Constants.java: -------------------------------------------------------------------------------- 1 | package com.tracy.fileexplorer.util; 2 | 3 | import android.os.Environment; 4 | 5 | public class Constants { 6 | 7 | // 文件下载目录 8 | public static final String FILE_BASEPATH = Environment.getExternalStorageDirectory() + "/tracyZhang/";// 基本目录 9 | public static final String AVATAR_SAVEPATH = FILE_BASEPATH + "avatar/"; // 头像目录 10 | public static final String DOWNLOAD_PATH = FILE_BASEPATH + "download/"; // 下载目录 11 | public static final String FILERECV_PATH = FILE_BASEPATH + "fileRecv/"; // 接收文件目录 12 | 13 | } 14 | -------------------------------------------------------------------------------- /.idea/libraries/support_v4_21_0_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/java/com/tracy/fileexplorer/BaseActivity.java: -------------------------------------------------------------------------------- 1 | package com.tracy.fileexplorer; 2 | 3 | import android.support.v7.app.ActionBarActivity; 4 | import android.widget.Toast; 5 | 6 | /** 7 | * Created by tracy on 15/3/30. 8 | */ 9 | public class BaseActivity extends ActionBarActivity { 10 | 11 | //show toast 12 | protected void showToast(final int strId) { 13 | runOnUiThread(new Runnable() { 14 | @Override 15 | public void run() { 16 | Toast.makeText(BaseActivity.this, getString(strId), Toast.LENGTH_SHORT).show(); 17 | } 18 | }); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 21 5 | buildToolsVersion "21.1.2" 6 | 7 | defaultConfig { 8 | applicationId "com.tracy.fileexplorer" 9 | minSdkVersion 14 10 | targetSdkVersion 21 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | compile 'com.android.support:appcompat-v7:21.0.3' 25 | } 26 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/tracy/tools/adt-bundle-mac/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FileExplorer 2 | * android file explorer,we can choose files by mime type such as photos,audios,videos,by sdcard path and extsdcard. it's easy to use and configure chosen file limit and file size. 3 | 4 | * android 本地文件浏览选择器,可配置选择文件数量、大小限制,并根据不同类型进行展示 5 | 6 | 7 | ## Usage 8 | 9 | ``` 10 | startActivity(cxt , LocaleFileMain.class),get chosen files list by FileManager.getInstance().getChoosedFiles() 11 | ``` 12 | 13 | ## Configuration 14 | 15 | ``` 16 | set chosen limits by FileManager.getInstance().initConfiguration(int maxChoosedCnt , long maxFileSize), default is DEFAULT_MAX_CHOOSED_CNT, DEFAULT_MAX_FILESIZE, reset to default by FileManager.getInstance().reSetDefaultConfiguration() 17 | ``` 18 | 19 | 20 | ![screenshot](https://github.com/TracyZhangLei/FileExplorer/blob/master/screenshot.png) -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /FileExplorer.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 7 | 10sp 8 | 12sp 9 | 14sp 10 | 16sp 11 | 18sp 12 | 20sp 13 | 22sp 14 | 15 | 4dp 16 | 6dp 17 | 8dp 18 | 10dp 19 | 20dp 20 | 26dp 21 | 36dp 22 | 40dp 23 | 50dp 24 | 60dp 25 | 26 | 55dp 27 | 36dp 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/layout/gallery_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 24 | 25 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TracyFileExplorer 5 | Settings 6 | 7 | 取消 8 | 9 | 本地文件 10 | 该分类没有文件 11 | 当前文件夹没有文件 12 | 已下载文件 13 | 手机内存 14 | SD卡内存 15 | 扩展卡内存 16 | 图片 17 | 音乐 18 | 视频 19 | (%1$s) 20 | 已选 21 | 发送(%1$s) 22 | 文件查看 23 | 重新发送 24 | 用其他应用打开 25 | 发送 26 | 下载 27 | 文件打开失败 28 | SDCard未加载 29 | 文件大小超出了限制,请重选 30 | 文件个数超出了限制,请重选 31 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 30 | 33 | 36 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /app/src/main/res/values-en/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TracyFileExplorer 5 | Settings 6 | 7 | Cancel 8 | TracyFileExplorer 9 | No files 10 | No Files 11 | Downloaded 12 | Root 13 | Sdcard 14 | ExtSdcard 15 | Photo 16 | Music 17 | Video 18 | (%1$s) 19 | Choosed 20 | Send(%1$s) 21 | File Viewer 22 | Resend 23 | Open by other app 24 | Send 25 | Download 26 | File open failed 27 | SDCard not mounted 28 | File size is too large 29 | Chosen count is over limit 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/layout/localfile_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 16 | 17 | 24 | 25 |