├── .gitignore
├── .idea
├── .name
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── gradle.xml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── misc.xml
├── modules.xml
├── runConfigurations.xml
└── vcs.xml
├── FileManager.iml
├── Readme.md
├── ScreenShots
├── 0.jpg
├── 1.jpg
├── 10.jpg
├── 11.jpg
├── 2.jpg
├── 3.jpg
├── 4.jpg
├── 5.jpg
├── 6.jpg
├── 7.jpg
├── 8.jpg
├── 9.jpg
└── a.jpg
├── app
├── .gitignore
├── app.iml
├── build.gradle
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── example
│ │ └── satish
│ │ └── filemanager
│ │ └── ApplicationTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ │ └── droids
│ │ │ └── tamada
│ │ │ └── filemanager
│ │ │ ├── Animations
│ │ │ ├── AVLoadingIndicatorView.java
│ │ │ ├── BallSpinFadeLoaderIndicator.java
│ │ │ ├── BaseIndicatorController.java
│ │ │ └── LineSpinFadeLoaderIndicator.java
│ │ │ ├── Utils
│ │ │ └── Utils.java
│ │ │ ├── activity
│ │ │ ├── AboutActivity.java
│ │ │ ├── FullImageViewActivity.java
│ │ │ ├── ImageViewActivity.java
│ │ │ ├── MainActivity.java
│ │ │ ├── ScreenLockActivity.java
│ │ │ ├── TextFileViewActivity.java
│ │ │ └── WelcomeScreen.java
│ │ │ ├── adapter
│ │ │ ├── AudiosListAdapter.java
│ │ │ ├── ExternalStorageListAdapter.java
│ │ │ ├── FullScreenImageAdapter.java
│ │ │ ├── ImagesListAdapter.java
│ │ │ ├── InternalStorageListAdapter.java
│ │ │ └── VideosListAdapter.java
│ │ │ ├── app
│ │ │ └── AppController.java
│ │ │ ├── fragments
│ │ │ ├── AudiosListFragment.java
│ │ │ ├── ExternalStorageFragment.java
│ │ │ ├── ImagesListFragment.java
│ │ │ ├── InternalStorageFragment.java
│ │ │ ├── SettingsFragment.java
│ │ │ └── VideosListFragment.java
│ │ │ ├── helper
│ │ │ ├── AnalyticsTrackers.java
│ │ │ ├── ArcProgress.java
│ │ │ ├── DividerItemDecoration.java
│ │ │ ├── PreferManager.java
│ │ │ ├── StorageHelper.java
│ │ │ ├── SwitchButton.java
│ │ │ ├── TouchImageView.java
│ │ │ └── Utilities.java
│ │ │ └── model
│ │ │ ├── ExternalStorageFilesModel.java
│ │ │ ├── InternalStorageFilesModel.java
│ │ │ ├── MediaFileListModel.java
│ │ │ ├── NavDrawerItem.java
│ │ │ └── TextEditorOptionsModel.java
│ └── res
│ │ ├── anim
│ │ ├── bottom_top.xml
│ │ └── top_bottom.xml
│ │ ├── drawable-hdpi
│ │ ├── back_arrow.png
│ │ ├── ic_apk.png
│ │ ├── ic_app_logo.png
│ │ ├── ic_audio_file.png
│ │ ├── ic_delete.png
│ │ ├── ic_delete_text.png
│ │ ├── ic_file_copy.png
│ │ ├── ic_folder.png
│ │ ├── ic_guide_check.png
│ │ ├── ic_guide_copy.png
│ │ ├── ic_guide_delete.png
│ │ ├── ic_guide_folder.png
│ │ ├── ic_guide_menu_bottom.png
│ │ ├── ic_guide_menu_nav.png
│ │ ├── ic_guide_new_file.png
│ │ ├── ic_guide_new_folder.png
│ │ ├── ic_html_file.png
│ │ ├── ic_memory_card.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_audios.png
│ │ ├── ic_menu_external_storage.png
│ │ ├── ic_menu_internal_storage.png
│ │ ├── ic_menu_new_file.png
│ │ ├── ic_menu_new_folder.png
│ │ ├── ic_menu_photos.png
│ │ ├── ic_menu_settings.png
│ │ ├── ic_menu_share.png
│ │ ├── ic_menu_videos.png
│ │ ├── ic_new_file.png
│ │ ├── ic_new_folder.png
│ │ ├── ic_no_media.png
│ │ ├── ic_pause.png
│ │ ├── ic_pdf_file.png
│ │ ├── ic_play.png
│ │ ├── ic_search.png
│ │ ├── ic_text_file.png
│ │ ├── ic_un_supported_file.png
│ │ └── ic_zip_folder.png
│ │ ├── drawable-mdpi
│ │ ├── back_arrow.png
│ │ ├── ic_apk.png
│ │ ├── ic_app_logo.png
│ │ ├── ic_audio_file.png
│ │ ├── ic_delete.png
│ │ ├── ic_delete_text.png
│ │ ├── ic_file_copy.png
│ │ ├── ic_folder.png
│ │ ├── ic_guide_check.png
│ │ ├── ic_guide_copy.png
│ │ ├── ic_guide_delete.png
│ │ ├── ic_guide_folder.png
│ │ ├── ic_guide_menu_bottom.png
│ │ ├── ic_guide_menu_nav.png
│ │ ├── ic_guide_new_file.png
│ │ ├── ic_guide_new_folder.png
│ │ ├── ic_html_file.png
│ │ ├── ic_memory_card.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_audios.png
│ │ ├── ic_menu_external_storage.png
│ │ ├── ic_menu_internal_storage.png
│ │ ├── ic_menu_new_file.png
│ │ ├── ic_menu_new_folder.png
│ │ ├── ic_menu_photos.png
│ │ ├── ic_menu_settings.png
│ │ ├── ic_menu_share.png
│ │ ├── ic_menu_videos.png
│ │ ├── ic_new_file.png
│ │ ├── ic_new_folder.png
│ │ ├── ic_no_media.png
│ │ ├── ic_pause.png
│ │ ├── ic_pdf_file.png
│ │ ├── ic_play.png
│ │ ├── ic_text_file.png
│ │ ├── ic_un_supported_file.png
│ │ ├── ic_zip_folder.png
│ │ └── searching_magnifying_glass.png
│ │ ├── drawable-v21
│ │ ├── bg_button_style.xml
│ │ ├── rectangle_ripple_effect.xml
│ │ └── ripple_effect.xml
│ │ ├── drawable-xhdpi
│ │ ├── back_arrow.png
│ │ ├── ic_apk.png
│ │ ├── ic_app_logo.png
│ │ ├── ic_audio_file.png
│ │ ├── ic_delete.png
│ │ ├── ic_delete_text.png
│ │ ├── ic_file_copy.png
│ │ ├── ic_folder.png
│ │ ├── ic_guide_check.png
│ │ ├── ic_guide_copy.png
│ │ ├── ic_guide_delete.png
│ │ ├── ic_guide_folder.png
│ │ ├── ic_guide_menu_bottom.png
│ │ ├── ic_guide_menu_nav.png
│ │ ├── ic_guide_new_file.png
│ │ ├── ic_guide_new_folder.png
│ │ ├── ic_html_file.png
│ │ ├── ic_memory_card.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_audios.png
│ │ ├── ic_menu_external_storage.png
│ │ ├── ic_menu_internal_storage.png
│ │ ├── ic_menu_new_file.png
│ │ ├── ic_menu_new_folder.png
│ │ ├── ic_menu_photos.png
│ │ ├── ic_menu_settings.png
│ │ ├── ic_menu_share.png
│ │ ├── ic_menu_videos.png
│ │ ├── ic_new_file.png
│ │ ├── ic_new_folder.png
│ │ ├── ic_no_media.png
│ │ ├── ic_pause.png
│ │ ├── ic_pdf_file.png
│ │ ├── ic_play.png
│ │ ├── ic_text_file.png
│ │ ├── ic_un_supported_file.png
│ │ ├── ic_zip_folder.png
│ │ └── searching_magnifying_glass.png
│ │ ├── drawable-xxhdpi
│ │ ├── back_arrow.png
│ │ ├── ic_apk.png
│ │ ├── ic_app_logo.png
│ │ ├── ic_audio_file.png
│ │ ├── ic_delete.png
│ │ ├── ic_delete_text.png
│ │ ├── ic_file_copy.png
│ │ ├── ic_folder.png
│ │ ├── ic_guide_check.png
│ │ ├── ic_guide_copy.png
│ │ ├── ic_guide_delete.png
│ │ ├── ic_guide_folder.png
│ │ ├── ic_guide_menu_bottom.png
│ │ ├── ic_guide_menu_nav.png
│ │ ├── ic_guide_new_file.png
│ │ ├── ic_guide_new_folder.png
│ │ ├── ic_html_file.png
│ │ ├── ic_memory_card.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_audios.png
│ │ ├── ic_menu_external_storage.png
│ │ ├── ic_menu_internal_storage.png
│ │ ├── ic_menu_new_file.png
│ │ ├── ic_menu_new_folder.png
│ │ ├── ic_menu_photos.png
│ │ ├── ic_menu_settings.png
│ │ ├── ic_menu_share.png
│ │ ├── ic_menu_videos.png
│ │ ├── ic_new_file.png
│ │ ├── ic_new_folder.png
│ │ ├── ic_no_media.png
│ │ ├── ic_pause.png
│ │ ├── ic_pdf_file.png
│ │ ├── ic_play.png
│ │ ├── ic_text_file.png
│ │ ├── ic_un_supported_file.png
│ │ ├── ic_zip_folder.png
│ │ └── searching_magnifying_glass.png
│ │ ├── drawable-xxxhdpi
│ │ ├── back_arrow.png
│ │ ├── ic_apk.png
│ │ ├── ic_app_logo.png
│ │ ├── ic_audio_file.png
│ │ ├── ic_delete.png
│ │ ├── ic_delete_text.png
│ │ ├── ic_file_copy.png
│ │ ├── ic_folder.png
│ │ ├── ic_guide_check.png
│ │ ├── ic_guide_copy.png
│ │ ├── ic_guide_delete.png
│ │ ├── ic_guide_folder.png
│ │ ├── ic_guide_menu_bottom.png
│ │ ├── ic_guide_menu_nav.png
│ │ ├── ic_guide_new_file.png
│ │ ├── ic_guide_new_folder.png
│ │ ├── ic_html_file.png
│ │ ├── ic_memory_card.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_audios.png
│ │ ├── ic_menu_external_storage.png
│ │ ├── ic_menu_internal_storage.png
│ │ ├── ic_menu_new_file.png
│ │ ├── ic_menu_new_folder.png
│ │ ├── ic_menu_photos.png
│ │ ├── ic_menu_settings.png
│ │ ├── ic_menu_share.png
│ │ ├── ic_menu_videos.png
│ │ ├── ic_new_file.png
│ │ ├── ic_new_folder.png
│ │ ├── ic_no_media.png
│ │ ├── ic_pause.png
│ │ ├── ic_pdf_file.png
│ │ ├── ic_play.png
│ │ ├── ic_text_file.png
│ │ ├── ic_un_supported_file.png
│ │ ├── ic_zip_folder.png
│ │ └── searching_magnifying_glass.png
│ │ ├── drawable
│ │ ├── bg_blue_round_corner.xml
│ │ ├── bg_btn_confirm.xml
│ │ ├── bg_btn_delete.xml
│ │ ├── bg_button_style.xml
│ │ ├── bg_dialog_menu.xml
│ │ ├── bg_footer_layout.xml
│ │ ├── bg_white_border.xml
│ │ ├── miui_back_drawable.xml
│ │ ├── miui_thumb_drawable.xml
│ │ ├── rectangle_ripple_effect.xml
│ │ ├── ripple_effect.xml
│ │ ├── round_corner.xml
│ │ └── toggle_play_pause.xml
│ │ ├── layout-v21
│ │ ├── activity_about.xml
│ │ ├── activity_full_imageview.xml
│ │ ├── activity_imageview.xml
│ │ ├── activity_screen_lock.xml
│ │ ├── activity_textview.xml
│ │ ├── audio_list_item_view.xml
│ │ ├── content_main.xml
│ │ ├── custom_app_lock_dialog.xml
│ │ ├── custom_audio_player_dialog.xml
│ │ ├── custom_delete_file_dialog.xml
│ │ ├── custom_extract_zip_dialog.xml
│ │ ├── custom_guide_dialog.xml
│ │ ├── custom_menu_dialog.xml
│ │ ├── custom_new_file_dialog.xml
│ │ ├── custom_new_folder_dialog.xml
│ │ ├── custom_rename_file_dialog.xml
│ │ ├── fragment_audios_list.xml
│ │ ├── fragment_external_storage.xml
│ │ ├── fragment_images_list.xml
│ │ ├── fragment_internal_storage.xml
│ │ ├── fragment_settings.xml
│ │ ├── fragment_videos_list.xml
│ │ ├── images_list_item_view.xml
│ │ └── video_list_item_view.xml
│ │ ├── layout
│ │ ├── activity_about.xml
│ │ ├── activity_full_imageview.xml
│ │ ├── activity_imageslist.xml
│ │ ├── activity_imageview.xml
│ │ ├── activity_main.xml
│ │ ├── activity_screen_lock.xml
│ │ ├── activity_textview.xml
│ │ ├── app_bar_main.xml
│ │ ├── audio_list_item_view.xml
│ │ ├── content_main.xml
│ │ ├── custom_app_lock_dialog.xml
│ │ ├── custom_audio_player_dialog.xml
│ │ ├── custom_delete_file_dialog.xml
│ │ ├── custom_extract_zip_dialog.xml
│ │ ├── custom_file_details_dialog.xml
│ │ ├── custom_guide_dialog.xml
│ │ ├── custom_menu_dialog.xml
│ │ ├── custom_new_file_dialog.xml
│ │ ├── custom_new_folder_dialog.xml
│ │ ├── custom_rename_file_dialog.xml
│ │ ├── fragment_audios_list.xml
│ │ ├── fragment_external_storage.xml
│ │ ├── fragment_images_list.xml
│ │ ├── fragment_internal_storage.xml
│ │ ├── fragment_settings.xml
│ │ ├── fragment_videos_list.xml
│ │ ├── images_list_item.xml
│ │ ├── images_list_item_view.xml
│ │ ├── layout_fullscreen_image.xml
│ │ ├── media_list_item_view.xml
│ │ ├── nav_header_main.xml
│ │ ├── video_list_item_view.xml
│ │ └── welcome_activity.xml
│ │ ├── menu
│ │ ├── activity_main_drawer.xml
│ │ ├── main_external_storage.xml
│ │ ├── main_internal_storage.xml
│ │ └── menu_text_editor.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_black_white.png
│ │ ├── ic_blue.png
│ │ ├── ic_change_text_color.png
│ │ ├── ic_change_text_size.png
│ │ ├── ic_dialog_not_readble.png
│ │ ├── ic_dialog_save.png
│ │ ├── ic_gray.png
│ │ ├── ic_green.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_change_background.png
│ │ ├── ic_save.png
│ │ └── ic_white_black.png
│ │ ├── mipmap-mdpi
│ │ ├── ic_black_white.png
│ │ ├── ic_blue.png
│ │ ├── ic_change_text_color.png
│ │ ├── ic_change_text_size.png
│ │ ├── ic_dialog_not_readble.png
│ │ ├── ic_dialog_save.png
│ │ ├── ic_gray.png
│ │ ├── ic_green.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_change_background.png
│ │ ├── ic_save.png
│ │ └── ic_white_black.png
│ │ ├── mipmap-xhdpi
│ │ ├── ic_black_white.png
│ │ ├── ic_blue.png
│ │ ├── ic_change_text_color.png
│ │ ├── ic_change_text_size.png
│ │ ├── ic_dialog_not_readble.png
│ │ ├── ic_dialog_save.png
│ │ ├── ic_gray.png
│ │ ├── ic_green.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_change_background.png
│ │ ├── ic_save.png
│ │ └── ic_white_black.png
│ │ ├── mipmap-xxhdpi
│ │ ├── ic_black_white.png
│ │ ├── ic_blue.png
│ │ ├── ic_change_text_color.png
│ │ ├── ic_change_text_size.png
│ │ ├── ic_dialog_not_readble.png
│ │ ├── ic_dialog_save.png
│ │ ├── ic_gray.png
│ │ ├── ic_green.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_change_background.png
│ │ ├── ic_save.png
│ │ └── ic_white_black.png
│ │ ├── mipmap-xxxhdpi
│ │ ├── ic_black_white.png
│ │ ├── ic_blue.png
│ │ ├── ic_change_text_color.png
│ │ ├── ic_change_text_size.png
│ │ ├── ic_dialog_not_readble.png
│ │ ├── ic_dialog_save.png
│ │ ├── ic_gray.png
│ │ ├── ic_green.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_change_background.png
│ │ ├── ic_save.png
│ │ └── ic_white_black.png
│ │ ├── values-v21
│ │ └── styles.xml
│ │ ├── values-w820dp
│ │ └── dimens.xml
│ │ ├── values
│ │ ├── attrs.xml
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ │ └── xml
│ │ └── app_tracker.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── satish
│ └── filemanager
│ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── keystore.jks
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | .gradle
2 | /local.properties
3 | /.idea/workspace.xml
4 | /.idea/libraries
5 | .DS_Store
6 | /build
7 | /captures
8 |
--------------------------------------------------------------------------------
/.idea/.name:
--------------------------------------------------------------------------------
1 | FileManager
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
18 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FileManager.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Readme.md:
--------------------------------------------------------------------------------
1 | #FileManager
2 | Android filemanager provides a user interface to manage files and folders. Here we develop a simple filemanager demo how to manage your internal and external files and folder on your android devices.
3 | ##Overview
4 | This article will take a comprehensive look at working with files and folders.It provides a simple way to present a scrolling list of rows that can either files or folders.
5 |
6 | ##FileManager Usage
7 | * listing of all file from your internal and external memory
8 | * create folders or files
9 | * delete folders or files
10 | * edit your txt file
11 | * play your audio,video files
12 | * open image files
13 |
14 | 
15 | 
16 | 
17 | 
18 | 
19 | 
20 | 
21 | 
22 | 
23 | 
24 | 
25 | 
26 | 
--------------------------------------------------------------------------------
/ScreenShots/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/0.jpg
--------------------------------------------------------------------------------
/ScreenShots/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/1.jpg
--------------------------------------------------------------------------------
/ScreenShots/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/10.jpg
--------------------------------------------------------------------------------
/ScreenShots/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/11.jpg
--------------------------------------------------------------------------------
/ScreenShots/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/2.jpg
--------------------------------------------------------------------------------
/ScreenShots/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/3.jpg
--------------------------------------------------------------------------------
/ScreenShots/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/4.jpg
--------------------------------------------------------------------------------
/ScreenShots/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/5.jpg
--------------------------------------------------------------------------------
/ScreenShots/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/6.jpg
--------------------------------------------------------------------------------
/ScreenShots/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/7.jpg
--------------------------------------------------------------------------------
/ScreenShots/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/8.jpg
--------------------------------------------------------------------------------
/ScreenShots/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/9.jpg
--------------------------------------------------------------------------------
/ScreenShots/a.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/ScreenShots/a.jpg
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 24
5 | buildToolsVersion "24.0.1"
6 |
7 | defaultConfig {
8 | applicationId "com.droids.tamada.filemanager"
9 | minSdkVersion 15
10 | targetSdkVersion 24
11 | versionCode 6
12 | versionName "2.1"
13 | }
14 | buildTypes {
15 | release {
16 | minifyEnabled false
17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 | }
19 | }
20 | dexOptions {
21 | javaMaxHeapSize "4g" //specify the heap size for the dex process
22 | }
23 | }
24 |
25 | dependencies {
26 | compile fileTree(dir: 'libs', include: ['*.jar'])
27 | compile 'com.android.support:appcompat-v7:24.2.1'
28 | compile 'com.android.support:design:24.2.1'
29 | compile 'com.android.support:support-v4:24.2.1'
30 | compile 'com.kyleduo.switchbutton:library:1.4.0'
31 | compile 'com.android.support:cardview-v7:24.2.1'
32 | compile 'com.sothree.slidinguppanel:library:3.0.0'
33 | compile 'com.google.android.gms:play-services-analytics:9.6.1'
34 | compile 'com.google.android.gms:play-services:9.6.1'
35 |
36 | testCompile 'junit:junit:4.12'
37 | }
38 |
--------------------------------------------------------------------------------
/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 C:\Users\Satish\AppData\Local\Android\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 |
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/example/satish/filemanager/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package com.example.satish.filemanager;
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 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/Animations/BaseIndicatorController.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.Animations;
2 |
3 | import android.graphics.Canvas;
4 | import android.graphics.Paint;
5 | import android.view.View;
6 |
7 | import com.nineoldandroids.animation.Animator;
8 |
9 | import java.lang.ref.WeakReference;
10 | import java.util.List;
11 |
12 | /**
13 | * Created by Jack on 2015/10/15.
14 | */
15 | public abstract class BaseIndicatorController {
16 |
17 |
18 | private WeakReference mTarget;
19 |
20 | private List mAnimators;
21 |
22 |
23 | public void setTarget(View target){
24 | this.mTarget=new WeakReference<>(target);
25 | }
26 |
27 | public View getTarget(){
28 | return mTarget!=null?mTarget.get():null;
29 | }
30 |
31 |
32 | public int getWidth(){
33 | return getTarget()!=null?getTarget().getWidth():0;
34 | }
35 |
36 | public int getHeight(){
37 | return getTarget()!=null?getTarget().getHeight():0;
38 | }
39 |
40 | public void postInvalidate(){
41 | if (getTarget()!=null){
42 | getTarget().postInvalidate();
43 | }
44 | }
45 |
46 | /**
47 | * draw indicator
48 | * @param canvas
49 | * @param paint
50 | */
51 | public abstract void draw(Canvas canvas, Paint paint);
52 |
53 | /**
54 | * create animation or animations
55 | */
56 | public abstract List createAnimation();
57 |
58 | public void initAnimation(){
59 | mAnimators=createAnimation();
60 | }
61 |
62 | /**
63 | * make animation to start or end when target
64 | * view was be Visible or Gone or Invisible.
65 | * make animation to cancel when target view
66 | * be onDetachedFromWindow.
67 | * @param animStatus
68 | */
69 | public void setAnimationStatus(AnimStatus animStatus){
70 | if (mAnimators==null){
71 | return;
72 | }
73 | int count=mAnimators.size();
74 | for (int i = 0; i < count; i++) {
75 | Animator animator=mAnimators.get(i);
76 | boolean isRunning=animator.isRunning();
77 | switch (animStatus){
78 | case START:
79 | if (!isRunning){
80 | animator.start();
81 | }
82 | break;
83 | case END:
84 | if (isRunning){
85 | animator.end();
86 | }
87 | break;
88 | case CANCEL:
89 | if (isRunning){
90 | animator.cancel();
91 | }
92 | break;
93 | }
94 | }
95 | }
96 |
97 |
98 | public enum AnimStatus{
99 | START,END,CANCEL
100 | }
101 |
102 |
103 |
104 | }
105 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/Animations/LineSpinFadeLoaderIndicator.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.Animations;
2 |
3 | import android.graphics.Canvas;
4 | import android.graphics.Paint;
5 | import android.graphics.RectF;
6 |
7 | /**
8 | * Created by inventbird on 7/6/16.
9 | */
10 | public class LineSpinFadeLoaderIndicator extends BallSpinFadeLoaderIndicator {
11 |
12 |
13 | @Override
14 | public void draw(Canvas canvas, Paint paint) {
15 | float radius=getWidth()/10;
16 | for (int i = 0; i < 8; i++) {
17 | canvas.save();
18 | Point point=circleAt(getWidth(),getHeight(),getWidth()/2.5f-radius,i*(Math.PI/4));
19 | canvas.translate(point.x, point.y);
20 | canvas.scale(scaleFloats[i], scaleFloats[i]);
21 | canvas.rotate(i*45);
22 | paint.setAlpha(alphas[i]);
23 | RectF rectF=new RectF(-radius,-radius/1.5f,1.5f*radius,radius/1.5f);
24 | canvas.drawRoundRect(rectF,5,5,paint);
25 | canvas.restore();
26 | }
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/Utils/Utils.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.Utils;
2 |
3 | import android.content.res.Resources;
4 |
5 | /**
6 | * Created by satish on 28/10/16.
7 | */
8 |
9 | public class Utils {
10 |
11 | private Utils() {
12 | }
13 |
14 | public static float dp2px(Resources resources, float dp) {
15 | final float scale = resources.getDisplayMetrics().density;
16 | return dp * scale + 0.5f;
17 | }
18 |
19 | public static float sp2px(Resources resources, float sp){
20 | final float scale = resources.getDisplayMetrics().scaledDensity;
21 | return sp * scale;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/activity/AboutActivity.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.activity;
2 |
3 | import android.annotation.SuppressLint;
4 | import android.os.Bundle;
5 | import android.support.annotation.Nullable;
6 | import android.support.v7.app.AppCompatActivity;
7 | import android.view.MenuItem;
8 | import android.view.View;
9 | import android.webkit.WebView;
10 | import android.webkit.WebViewClient;
11 |
12 | import com.droids.tamada.filemanager.Animations.AVLoadingIndicatorView;
13 | import com.droids.tamada.filemanager.app.AppController;
14 | import com.example.satish.filemanager.R;
15 |
16 |
17 | /**
18 | * Created by satish on 14/10/16.
19 | */
20 | public class AboutActivity extends AppCompatActivity {
21 | private AVLoadingIndicatorView progressBar;
22 | @SuppressLint("SetJavaScriptEnabled")
23 | @Override
24 | protected void onCreate(@Nullable Bundle savedInstanceState) {
25 | super.onCreate(savedInstanceState);
26 | setContentView(R.layout.activity_about);
27 | if (getSupportActionBar() != null) {
28 | getSupportActionBar().setDisplayHomeAsUpEnabled(true);
29 | getSupportActionBar().setTitle("About us");
30 | }
31 | WebView webView = (WebView) findViewById(R.id.webView);
32 | progressBar= (AVLoadingIndicatorView)findViewById(R.id.progressBar);
33 | webView.getSettings().setBuiltInZoomControls(false);
34 | webView.getSettings().setSupportZoom(false);
35 | webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
36 | webView.getSettings().setAllowFileAccess(true);
37 | webView.getSettings().setDomStorageEnabled(true);
38 | webView.canGoBack();
39 | webView.goBack();
40 | webView.loadUrl("http://www.androidhive.info/");
41 | progressBar.setVisibility(View.VISIBLE);
42 | webView.setWebViewClient(new WebViewClient() {
43 | public void onPageFinished(WebView view, String url) {
44 | progressBar.setVisibility(View.GONE);
45 | }
46 | });
47 | }
48 |
49 | @Override
50 | protected void onResume() {
51 | super.onResume();
52 | AppController.getInstance().trackScreenView("About Screen");
53 | }
54 |
55 | @Override
56 | public void onBackPressed() {
57 | super.onBackPressed();
58 | finish();
59 | }
60 |
61 | @Override
62 | public boolean onOptionsItemSelected(MenuItem item) {
63 | switch (item.getItemId()) {
64 | // Respond to the action bar's Up/Home button
65 | case android.R.id.home:
66 | finish();
67 | return true;
68 | }
69 | return super.onOptionsItemSelected(item);
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/activity/FullImageViewActivity.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.activity;
2 |
3 | import android.content.Intent;
4 | import android.graphics.Bitmap;
5 | import android.graphics.BitmapFactory;
6 | import android.os.Bundle;
7 | import android.support.annotation.Nullable;
8 | import android.support.v7.app.AppCompatActivity;
9 | import android.view.View;
10 | import android.widget.ImageView;
11 | import android.widget.TextView;
12 |
13 | import com.droids.tamada.filemanager.helper.TouchImageView;
14 | import com.example.satish.filemanager.R;
15 |
16 | import java.io.File;
17 |
18 | /**
19 | * Created by satish on 12/11/16.
20 | */
21 |
22 | public class FullImageViewActivity extends AppCompatActivity {
23 | private ImageView imgBackArrow;
24 | private TouchImageView imageView;
25 | String imagePath;
26 |
27 | @Override
28 | protected void onCreate(@Nullable Bundle savedInstanceState) {
29 | super.onCreate(savedInstanceState);
30 | setContentView(R.layout.activity_full_imageview);
31 | imageView = (TouchImageView) findViewById(R.id.imageView);
32 | imgBackArrow= (ImageView) findViewById(R.id.id_back_arrow);
33 | Intent intent = getIntent();
34 | imagePath = intent.getStringExtra("imagePath");
35 | imgBackArrow.setOnClickListener(new View.OnClickListener() {
36 | @Override
37 | public void onClick(View view) {
38 | finish();
39 | }
40 | });
41 | File imgFile = new File(imagePath);
42 | if (imgFile.exists()) {
43 | Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
44 | imageView.setImageBitmap(myBitmap);
45 | }
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/activity/ImageViewActivity.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.activity;
2 |
3 | import android.content.Intent;
4 | import android.graphics.Bitmap;
5 | import android.graphics.BitmapFactory;
6 | import android.os.Bundle;
7 | import android.support.annotation.Nullable;
8 | import android.support.v4.view.ViewPager;
9 | import android.support.v7.app.AppCompatActivity;
10 | import android.view.View;
11 | import android.widget.ImageView;
12 | import android.widget.TextView;
13 |
14 | import com.droids.tamada.filemanager.adapter.FullScreenImageAdapter;
15 | import com.droids.tamada.filemanager.app.AppController;
16 | import com.droids.tamada.filemanager.model.MediaFileListModel;
17 | import com.example.satish.filemanager.R;
18 |
19 | import java.io.File;
20 | import java.util.ArrayList;
21 |
22 | /**
23 | * Created by inventbird on 17/10/16.
24 | */
25 | public class ImageViewActivity extends AppCompatActivity {
26 | private ImageView imgBackArrow;
27 | int imagePosition;
28 | private FullScreenImageAdapter adapter;
29 | private ViewPager viewPager;
30 |
31 | @Override
32 | protected void onCreate(@Nullable Bundle savedInstanceState) {
33 | super.onCreate(savedInstanceState);
34 | setContentView(R.layout.activity_imageview);
35 | imgBackArrow= (ImageView) findViewById(R.id.id_back_arrow);
36 | viewPager = (ViewPager) findViewById(R.id.pager);
37 | adapter = new FullScreenImageAdapter(ImageViewActivity.this, AppController.getInstance().getMediaFileListModeLArray());
38 | Intent intent = getIntent();
39 | imagePosition=intent.getIntExtra("imagePosition",0);
40 | viewPager.setAdapter(adapter);
41 | // displaying selected image first
42 | viewPager.setCurrentItem(imagePosition);
43 | imgBackArrow.setOnClickListener(new View.OnClickListener() {
44 | @Override
45 | public void onClick(View view) {
46 | finish();
47 | }
48 | });
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/adapter/AudiosListAdapter.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.adapter;
2 |
3 | import android.support.v7.widget.RecyclerView;
4 | import android.view.LayoutInflater;
5 | import android.view.View;
6 | import android.view.ViewGroup;
7 | import android.widget.ImageView;
8 | import android.widget.TextView;
9 |
10 | import com.droids.tamada.filemanager.model.MediaFileListModel;
11 | import com.example.satish.filemanager.R;
12 |
13 | import java.util.List;
14 |
15 | /**
16 | * Created by satish on 16/10/16.
17 | */
18 |
19 | public class AudiosListAdapter extends RecyclerView.Adapter {
20 | private List mediaFileListModels;
21 |
22 | public class MyViewHolder extends RecyclerView.ViewHolder {
23 | public TextView lblFileName,lblFileSize,lblFileCreated;
24 | public ImageView imgItemIcon;
25 |
26 | public MyViewHolder(View view) {
27 | super(view);
28 | lblFileName = (TextView) view.findViewById(R.id.file_name);
29 | lblFileCreated= (TextView) view.findViewById(R.id.file_created);
30 | imgItemIcon = (ImageView) view.findViewById(R.id.icon);
31 | lblFileSize= (TextView) view.findViewById(R.id.file_size);
32 | }
33 | }
34 |
35 | public AudiosListAdapter(List mediaFileListModels) {
36 | this.mediaFileListModels = mediaFileListModels;
37 | }
38 |
39 | @Override
40 | public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
41 | View itemView = LayoutInflater.from(parent.getContext())
42 | .inflate(R.layout.audio_list_item_view, parent, false);
43 |
44 | return new MyViewHolder(itemView);
45 | }
46 |
47 |
48 | @Override
49 | public void onBindViewHolder(MyViewHolder holder, final int position) {
50 | MediaFileListModel mediaFileListModel = mediaFileListModels.get(position);
51 | holder.lblFileName.setText(mediaFileListModel.getFileName());
52 | holder.lblFileSize.setText(mediaFileListModel.getFileSize());
53 | holder.lblFileCreated.setText(mediaFileListModel.getFileCreatedTime().substring(0,19));
54 | holder.imgItemIcon.setImageResource(R.drawable.ic_audio_file);
55 | }
56 |
57 | @Override
58 | public int getItemCount() {
59 | return mediaFileListModels.size();
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/adapter/FullScreenImageAdapter.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.adapter;
2 |
3 | import android.app.Activity;
4 | import android.content.Context;
5 | import android.graphics.Bitmap;
6 | import android.graphics.BitmapFactory;
7 | import android.support.v4.view.PagerAdapter;
8 | import android.support.v4.view.ViewPager;
9 | import android.view.LayoutInflater;
10 | import android.view.View;
11 | import android.view.ViewGroup;
12 | import android.widget.ImageView;
13 | import android.widget.LinearLayout;
14 | import android.widget.RelativeLayout;
15 |
16 | import com.droids.tamada.filemanager.helper.TouchImageView;
17 | import com.droids.tamada.filemanager.model.MediaFileListModel;
18 | import com.example.satish.filemanager.R;
19 | import java.io.File;
20 | import java.util.ArrayList;
21 |
22 |
23 | /**
24 | * Created by satish on 15/3/16.
25 | */
26 | public class FullScreenImageAdapter extends PagerAdapter {
27 | private Activity _activity;
28 | private ArrayList mediaFileListModelArrayList;
29 | // constructor
30 | public FullScreenImageAdapter(Activity activity, ArrayList mediaFileListModelArrayList) {
31 | this._activity = activity;
32 | this.mediaFileListModelArrayList=mediaFileListModelArrayList;
33 | }
34 |
35 | @Override
36 | public int getCount() {
37 | return this.mediaFileListModelArrayList.size();
38 | }
39 |
40 | @Override
41 | public boolean isViewFromObject(View view, Object object) {
42 | return view == ((RelativeLayout) object);
43 | }
44 |
45 | @Override
46 | public Object instantiateItem(ViewGroup container, int position) {
47 | LayoutInflater inflater = (LayoutInflater) _activity
48 | .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
49 | View viewLayout = inflater.inflate(R.layout.layout_fullscreen_image, container,false);
50 | TouchImageView imgDisplay = (TouchImageView) viewLayout.findViewById(R.id.imgDisplay);
51 | MediaFileListModel mediaFileListModel=mediaFileListModelArrayList.get(position);
52 | File imgFile = new File(mediaFileListModel.getFilePath());
53 | if (imgFile.exists()) {
54 | Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
55 | imgDisplay.setImageBitmap(myBitmap);
56 | }
57 | ((ViewPager) container).addView(viewLayout);
58 | return viewLayout;
59 | }
60 |
61 | @Override
62 | public void destroyItem(ViewGroup container, int position, Object object) {
63 | ((ViewPager) container).removeView((RelativeLayout) object);
64 | }
65 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/adapter/ImagesListAdapter.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.adapter;
2 |
3 | import android.graphics.Bitmap;
4 | import android.graphics.BitmapFactory;
5 | import android.media.ThumbnailUtils;
6 | import android.support.v7.widget.RecyclerView;
7 | import android.util.Log;
8 | import android.view.LayoutInflater;
9 | import android.view.View;
10 | import android.view.ViewGroup;
11 | import android.widget.ImageView;
12 | import android.widget.TextView;
13 |
14 | import com.droids.tamada.filemanager.model.MediaFileListModel;
15 | import com.example.satish.filemanager.R;
16 |
17 | import java.io.File;
18 | import java.util.List;
19 |
20 | /**
21 | * Created by inventbird on 17/10/16.
22 | */
23 | public class ImagesListAdapter extends RecyclerView.Adapter {
24 | private List mediaFileListModels;
25 | final int THUMB_SIZE = 64;
26 |
27 | public class MyViewHolder extends RecyclerView.ViewHolder {
28 | public TextView lblFileName,lblFileSize,lblFileCreated;
29 | public ImageView imgItemIcon;
30 |
31 | public MyViewHolder(View view) {
32 | super(view);
33 | lblFileName = (TextView) view.findViewById(R.id.file_name);
34 | lblFileCreated= (TextView) view.findViewById(R.id.file_created);
35 | imgItemIcon = (ImageView) view.findViewById(R.id.icon);
36 | lblFileSize= (TextView) view.findViewById(R.id.file_size);
37 | }
38 | }
39 |
40 | public ImagesListAdapter(List mediaFileListModels) {
41 | this.mediaFileListModels = mediaFileListModels;
42 | }
43 |
44 | @Override
45 | public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
46 | View itemView = LayoutInflater.from(parent.getContext())
47 | .inflate(R.layout.images_list_item_view, parent, false);
48 |
49 | return new MyViewHolder(itemView);
50 | }
51 |
52 |
53 | @Override
54 | public void onBindViewHolder(MyViewHolder holder, final int position) {
55 | MediaFileListModel mediaFileListModel = mediaFileListModels.get(position);
56 | holder.lblFileName.setText(mediaFileListModel.getFileName());
57 | holder.lblFileSize.setText(mediaFileListModel.getFileSize());
58 | holder.lblFileCreated.setText(mediaFileListModel.getFileCreatedTime().substring(0,19));
59 | File imgFile = new File(mediaFileListModel.getFilePath());
60 | if (imgFile.exists()) {
61 | Bitmap ThumbImage = ThumbnailUtils.extractThumbnail(BitmapFactory.decodeFile( mediaFileListModel.getFilePath()),
62 | THUMB_SIZE, THUMB_SIZE);
63 | holder.imgItemIcon.setImageBitmap(ThumbImage);
64 | }
65 | }
66 |
67 | @Override
68 | public int getItemCount() {
69 | return mediaFileListModels.size();
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/adapter/VideosListAdapter.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.adapter;
2 |
3 | import android.graphics.Bitmap;
4 | import android.media.ThumbnailUtils;
5 | import android.provider.MediaStore;
6 | import android.support.v7.widget.RecyclerView;
7 | import android.view.LayoutInflater;
8 | import android.view.View;
9 | import android.view.ViewGroup;
10 | import android.widget.ImageView;
11 | import android.widget.TextView;
12 |
13 | import com.droids.tamada.filemanager.model.MediaFileListModel;
14 | import com.example.satish.filemanager.R;
15 |
16 | import java.util.List;
17 |
18 | /**
19 | * Created by satish on 17/10/16.
20 | */
21 |
22 | public class VideosListAdapter extends RecyclerView.Adapter {
23 | private List mediaFileListModels;
24 |
25 | public class MyViewHolder extends RecyclerView.ViewHolder {
26 | public TextView lblFileName;
27 | public ImageView imgItemIcon;
28 |
29 | public MyViewHolder(View view) {
30 | super(view);
31 | lblFileName = (TextView) view.findViewById(R.id.file_name);
32 | imgItemIcon = (ImageView) view.findViewById(R.id.icon);
33 | }
34 | }
35 |
36 | public VideosListAdapter(List mediaFileListModels) {
37 | this.mediaFileListModels = mediaFileListModels;
38 | }
39 |
40 | @Override
41 | public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
42 | View itemView = LayoutInflater.from(parent.getContext())
43 | .inflate(R.layout.video_list_item_view, parent, false);
44 |
45 | return new MyViewHolder(itemView);
46 | }
47 |
48 |
49 | @Override
50 | public void onBindViewHolder(MyViewHolder holder, final int position) {
51 | MediaFileListModel mediaFileListModel = mediaFileListModels.get(position);
52 | Bitmap bMap = ThumbnailUtils.createVideoThumbnail(mediaFileListModel.getFilePath(), MediaStore.Video.Thumbnails.MICRO_KIND);
53 | holder.lblFileName.setText(mediaFileListModel.getFileName());
54 | holder.imgItemIcon.setImageBitmap(bMap);
55 | }
56 |
57 | @Override
58 | public int getItemCount() {
59 | return mediaFileListModels.size();
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/helper/AnalyticsTrackers.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.helper;
2 |
3 | import android.content.Context;
4 |
5 | import com.example.satish.filemanager.R;
6 | import com.google.android.gms.analytics.GoogleAnalytics;
7 | import com.google.android.gms.analytics.Tracker;
8 |
9 | import java.util.HashMap;
10 | import java.util.Map;
11 |
12 | /**
13 | * Created by satish on 26/11/16.
14 | */
15 |
16 | public final class AnalyticsTrackers {
17 |
18 | public enum Target {
19 | APP,
20 | // Add more trackers here if you need, and update the code in #get(Target) below
21 | }
22 |
23 | private static AnalyticsTrackers sInstance;
24 |
25 | public static synchronized void initialize(Context context) {
26 | if (sInstance != null) {
27 | throw new IllegalStateException("Extra call to initialize analytics trackers");
28 | }
29 |
30 | sInstance = new AnalyticsTrackers(context);
31 | }
32 |
33 | public static synchronized AnalyticsTrackers getInstance() {
34 | if (sInstance == null) {
35 | throw new IllegalStateException("Call initialize() before getInstance()");
36 | }
37 |
38 | return sInstance;
39 | }
40 |
41 | private final Map mTrackers = new HashMap();
42 | private final Context mContext;
43 |
44 | /**
45 | * Don't instantiate directly - use {@link #getInstance()} instead.
46 | */
47 | private AnalyticsTrackers(Context context) {
48 | mContext = context.getApplicationContext();
49 | }
50 |
51 | public synchronized Tracker get(Target target) {
52 | if (!mTrackers.containsKey(target)) {
53 | Tracker tracker;
54 | switch (target) {
55 | case APP:
56 | tracker = GoogleAnalytics.getInstance(mContext).newTracker(R.xml.app_tracker);
57 | break;
58 | default:
59 | throw new IllegalArgumentException("Unhandled analytics target " + target);
60 | }
61 | mTrackers.put(target, tracker);
62 | }
63 |
64 | return mTrackers.get(target);
65 | }
66 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/helper/StorageHelper.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.helper;
2 | import android.os.Environment;
3 |
4 | /**
5 | * Created by satish on 2/11/16.
6 | */
7 |
8 | public class StorageHelper {private static boolean externalStorageReadable, externalStorageWritable;
9 |
10 | public static boolean isExternalStorageReadable() {
11 | checkStorage();
12 | return externalStorageReadable;
13 | }
14 |
15 | public static boolean isExternalStorageWritable() {
16 | checkStorage();
17 | return externalStorageWritable;
18 | }
19 |
20 | public static boolean isExternalStorageReadableAndWritable() {
21 | checkStorage();
22 | return externalStorageReadable && externalStorageWritable;
23 | }
24 |
25 | private static void checkStorage() {
26 | String state = Environment.getExternalStorageState();
27 | if (state.equals(Environment.MEDIA_MOUNTED)) {
28 | externalStorageReadable = externalStorageWritable = true;
29 | } else if (state.equals(Environment.MEDIA_MOUNTED) || state.equals(Environment.MEDIA_MOUNTED_READ_ONLY)) {
30 | externalStorageReadable = true;
31 | externalStorageWritable = false;
32 | } else {
33 | externalStorageReadable = externalStorageWritable = false;
34 | }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/helper/Utilities.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.helper;
2 |
3 | /**
4 | * Created by Satish on 26-12-2015.
5 | */
6 | public class Utilities {
7 | /**
8 | * Function to convert milliseconds time to
9 | * Timer Format
10 | * Hours:Minutes:Seconds
11 | */
12 | public String milliSecondsToTimer(long milliseconds) {
13 | String finalTimerString = "";
14 | String secondsString;
15 |
16 | // Convert total duration into time
17 | int hours = (int) (milliseconds / (1000 * 60 * 60));
18 | int minutes = (int) (milliseconds % (1000 * 60 * 60)) / (1000 * 60);
19 | int seconds = (int) ((milliseconds % (1000 * 60 * 60)) % (1000 * 60) / 1000);
20 | // Add hours if there
21 | if (hours > 0) {
22 | finalTimerString = hours + ":";
23 | }
24 |
25 | // Prepending 0 to seconds if it is one digit
26 | if (seconds < 10) {
27 | secondsString = "0" + seconds;
28 | } else {
29 | secondsString = "" + seconds;
30 | }
31 |
32 | finalTimerString = finalTimerString + minutes + ":" + secondsString;
33 |
34 | // return timer string
35 | return finalTimerString;
36 | }
37 |
38 | /**
39 | * Function to get Progress percentage
40 | *
41 | * @param currentDuration
42 | * @param totalDuration
43 | */
44 | public int getProgressPercentage(long currentDuration, long totalDuration) {
45 | Double percentage;
46 |
47 | long currentSeconds = (int) (currentDuration / 1000);
48 | long totalSeconds = (int) (totalDuration / 1000);
49 |
50 | // calculating percentage
51 | percentage = (((double) currentSeconds) / totalSeconds) * 100;
52 |
53 | // return percentage
54 | return percentage.intValue();
55 | }
56 |
57 | /**
58 | * Function to change progress to timer
59 | *
60 | * @param progress -
61 | * @param totalDuration returns current duration in milliseconds
62 | */
63 | public int progressToTimer(int progress, int totalDuration) {
64 | int currentDuration;
65 | totalDuration = totalDuration / 1000;
66 | currentDuration = (int) ((((double) progress) / 100) * totalDuration);
67 |
68 | // return current duration in milliseconds
69 | return currentDuration * 1000;
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/model/ExternalStorageFilesModel.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.model;
2 |
3 | /**
4 | * Created by Satish on 05-12-2015.
5 | */
6 | public class ExternalStorageFilesModel {
7 | private String fileName;
8 | private String filePath;
9 | private boolean selected;
10 | private boolean isDir;
11 | private boolean isCheckboxVisible;
12 |
13 | public ExternalStorageFilesModel() {
14 | }
15 |
16 | public ExternalStorageFilesModel(String fileName, String filePath, boolean isDir, boolean isSelected, boolean isCheckboxVisible) {
17 | this.filePath = filePath;
18 | this.fileName = fileName;
19 | this.selected = isSelected;
20 | this.isCheckboxVisible = isCheckboxVisible;
21 | this.isDir = isDir;
22 | }
23 |
24 | public boolean isCheckboxVisible() {
25 | return isCheckboxVisible;
26 | }
27 |
28 | public void setCheckboxVisible(boolean checkboxVisible) {
29 | isCheckboxVisible = checkboxVisible;
30 | }
31 |
32 | public void setDir(boolean dir) {
33 | isDir = dir;
34 | }
35 | public void setIsDir(boolean isDir) {
36 | this.isDir = isDir;
37 | }
38 | public boolean isDir() {
39 | return isDir;
40 | }
41 |
42 |
43 | public String getFilePath() {
44 | return filePath;
45 | }
46 |
47 | public void setFilePath(String filePath) {
48 | this.filePath = filePath;
49 | }
50 |
51 | public String getFileName() {
52 | return fileName;
53 | }
54 |
55 | public void setFileName(String fileName) {
56 | this.fileName = fileName;
57 | }
58 |
59 | public boolean isSelected() {
60 | return selected;
61 | }
62 |
63 | public void setSelected(boolean selected) {
64 | this.selected = selected;
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/model/InternalStorageFilesModel.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.model;
2 |
3 | /**
4 | * Created by Satish on 26-12-2015.
5 | */
6 | public class InternalStorageFilesModel {
7 | private String fileName;
8 | private String filePath;
9 | private boolean selected;
10 | private boolean isDir;
11 | private boolean isCheckboxVisible;
12 |
13 | public InternalStorageFilesModel() {
14 | }
15 |
16 | public InternalStorageFilesModel(String fileName, String filePath, boolean isDir, boolean isSelected, boolean isCheckboxVisible) {
17 | this.filePath = filePath;
18 | this.fileName = fileName;
19 | this.selected = isSelected;
20 | this.isCheckboxVisible=isCheckboxVisible;
21 | this.isDir = isDir;
22 | }
23 |
24 | public boolean isCheckboxVisible() {
25 | return isCheckboxVisible;
26 | }
27 |
28 | public void setCheckboxVisible(boolean checkboxVisible) {
29 | isCheckboxVisible = checkboxVisible;
30 | }
31 |
32 | public void setDir(boolean dir) {
33 | isDir = dir;
34 | }
35 |
36 |
37 | public void setIsDir(boolean isDir) {
38 | this.isDir = isDir;
39 | }
40 |
41 | public String getFilePath() {
42 | return filePath;
43 | }
44 |
45 | public void setFilePath(String filePath) {
46 | this.filePath = filePath;
47 | }
48 |
49 | public String getFileName() {
50 | return fileName;
51 | }
52 |
53 | public void setFileName(String fileName) {
54 | this.fileName = fileName;
55 | }
56 |
57 | public boolean isSelected() {
58 | return selected;
59 | }
60 |
61 | public void setSelected(boolean selected) {
62 | this.selected = selected;
63 | }
64 | }
65 |
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/model/MediaFileListModel.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.model;
2 |
3 | /**
4 | * Created by Satish on 29-12-2015.
5 | */
6 | public class MediaFileListModel {
7 | private String fileName, filePath,fileSize,fileCreatedTime;
8 |
9 | public MediaFileListModel() {
10 | }
11 |
12 | public String getFileCreatedTime() {
13 | return fileCreatedTime;
14 | }
15 |
16 | public void setFileCreatedTime(String fileCreatedTime) {
17 | this.fileCreatedTime = fileCreatedTime;
18 | }
19 |
20 | public String getFileSize() {
21 | return fileSize;
22 | }
23 |
24 | public void setFileSize(String fileSize) {
25 | this.fileSize = fileSize;
26 | }
27 |
28 | public String getFileName() {
29 | return fileName;
30 | }
31 |
32 | public void setFileName(String fileName) {
33 | this.fileName = fileName;
34 | }
35 |
36 | public String getFilePath() {
37 | return filePath;
38 | }
39 |
40 | public void setFilePath(String filePath) {
41 | this.filePath = filePath;
42 | }
43 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/model/NavDrawerItem.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.model;
2 |
3 | /**
4 | * Created by Satish on 04-12-2015.
5 | */
6 | public class NavDrawerItem {
7 | private boolean showNotify;
8 | private String title;
9 | private int icon;
10 |
11 | public NavDrawerItem() {
12 |
13 | }
14 |
15 | public NavDrawerItem(boolean showNotify, String title, int icon) {
16 | this.showNotify = showNotify;
17 | this.title = title;
18 | this.icon = icon;
19 | }
20 |
21 | public boolean isShowNotify() {
22 | return showNotify;
23 | }
24 |
25 | public void setShowNotify(boolean showNotify) {
26 | this.showNotify = showNotify;
27 | }
28 |
29 | public int getIcon() {
30 | return icon;
31 | }
32 |
33 | public void setIcon(int icon) {
34 | this.icon = icon;
35 | }
36 |
37 | public String getTitle() {
38 | return title;
39 | }
40 |
41 | public void setTitle(String title) {
42 | this.title = title;
43 | }
44 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/droids/tamada/filemanager/model/TextEditorOptionsModel.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager.model;
2 |
3 | /**
4 | * Created by Satish on 19-12-2015.
5 | */
6 | public class TextEditorOptionsModel {
7 | private int textSize;
8 |
9 | public TextEditorOptionsModel(int textSize) {
10 | this.textSize = textSize;
11 | }
12 |
13 | public TextEditorOptionsModel() {
14 | }
15 |
16 | public int getTextSize() {
17 | return textSize;
18 | }
19 |
20 | public void setTextSize() {
21 | this.textSize = 30;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/bottom_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/top_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/back_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/back_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_apk.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_app_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_app_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_audio_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_audio_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_delete_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_delete_text.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_file_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_file_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_check.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_menu_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_menu_bottom.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_menu_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_menu_nav.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_guide_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_guide_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_html_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_html_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_memory_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_memory_card.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_audios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_audios.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_external_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_external_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_internal_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_internal_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_photos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_photos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_videos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_menu_videos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_no_media.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_no_media.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_pdf_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_pdf_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_text_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_text_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_un_supported_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_un_supported_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_zip_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-hdpi/ic_zip_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/back_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/back_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_apk.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_app_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_app_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_audio_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_audio_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_delete_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_delete_text.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_file_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_file_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_check.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_menu_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_menu_bottom.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_menu_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_menu_nav.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_guide_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_guide_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_html_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_html_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_memory_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_memory_card.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_audios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_audios.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_external_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_external_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_internal_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_internal_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_photos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_photos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_menu_videos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_menu_videos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_no_media.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_no_media.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_pdf_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_pdf_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_text_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_text_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_un_supported_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_un_supported_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_zip_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/ic_zip_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/searching_magnifying_glass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-mdpi/searching_magnifying_glass.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/bg_button_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/rectangle_ripple_effect.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | -
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v21/ripple_effect.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | -
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/back_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/back_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_apk.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_app_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_app_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_audio_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_audio_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_delete_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_delete_text.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_file_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_file_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_check.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_menu_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_menu_bottom.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_menu_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_menu_nav.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_guide_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_guide_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_html_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_html_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_memory_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_memory_card.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_audios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_audios.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_external_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_external_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_internal_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_internal_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_photos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_photos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_menu_videos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_menu_videos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_no_media.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_no_media.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_pdf_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_pdf_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_text_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_text_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_un_supported_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_un_supported_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_zip_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/ic_zip_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/searching_magnifying_glass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xhdpi/searching_magnifying_glass.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/back_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/back_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_apk.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_app_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_app_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_audio_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_audio_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_delete_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_delete_text.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_file_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_file_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_check.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_menu_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_menu_bottom.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_menu_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_menu_nav.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_guide_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_guide_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_html_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_html_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_memory_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_memory_card.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_audios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_audios.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_external_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_external_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_internal_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_internal_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_photos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_photos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_videos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_menu_videos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_no_media.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_no_media.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_pdf_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_pdf_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_text_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_text_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_un_supported_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_un_supported_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_zip_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/ic_zip_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/searching_magnifying_glass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxhdpi/searching_magnifying_glass.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/back_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/back_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_apk.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_app_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_app_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_audio_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_audio_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_delete_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_delete_text.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_file_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_file_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_check.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_copy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_menu_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_menu_bottom.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_menu_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_menu_nav.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_guide_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_guide_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_html_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_html_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_memory_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_memory_card.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_audios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_audios.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_external_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_external_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_internal_storage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_internal_storage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_photos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_photos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_menu_videos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_menu_videos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_new_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_new_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_new_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_new_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_no_media.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_no_media.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_pdf_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_pdf_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_text_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_text_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_un_supported_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_un_supported_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_zip_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/ic_zip_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/searching_magnifying_glass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/drawable-xxxhdpi/searching_magnifying_glass.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_blue_round_corner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_btn_confirm.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_btn_delete.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_button_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | -
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | -
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | -
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_dialog_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 | -
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_footer_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 | -
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_white_border.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/miui_back_drawable.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
10 |
11 |
12 | -
13 |
14 |
15 |
16 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/miui_thumb_drawable.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
9 |
10 |
11 | -
12 |
13 |
14 |
17 |
18 |
19 | -
20 |
21 |
22 |
25 |
26 |
27 | -
28 |
29 |
30 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/rectangle_ripple_effect.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 | -
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ripple_effect.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 | -
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/round_corner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/toggle_play_pause.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/activity_about.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
22 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/activity_full_imageview.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
20 |
21 |
22 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/activity_imageview.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
21 |
22 |
23 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/activity_textview.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
20 |
21 |
22 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/audio_list_item_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
20 |
21 |
22 |
32 |
33 |
41 |
42 |
45 |
46 |
58 |
59 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/content_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/custom_audio_player_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
29 |
30 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/custom_delete_file_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
23 |
24 |
33 |
34 |
39 |
40 |
51 |
52 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/custom_extract_zip_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
23 |
24 |
33 |
34 |
39 |
40 |
51 |
52 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/custom_menu_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
23 |
24 |
32 |
33 |
42 |
43 |
51 |
52 |
61 |
62 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/fragment_audios_list.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
18 |
19 |
27 |
32 |
33 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/fragment_images_list.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
18 |
19 |
27 |
32 |
33 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/fragment_videos_list.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
18 |
19 |
27 |
28 |
33 |
34 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-v21/video_list_item_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
19 |
20 |
33 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_about.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
22 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_full_imageview.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
20 |
21 |
22 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_imageslist.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_imageview.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
21 |
22 |
23 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_textview.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
20 |
21 |
22 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/app_bar_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
15 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/audio_list_item_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
21 |
22 |
23 |
33 |
34 |
42 |
43 |
46 |
47 |
59 |
60 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/content_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/custom_audio_player_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
29 |
30 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/custom_delete_file_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
23 |
24 |
33 |
34 |
39 |
40 |
51 |
52 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/custom_extract_zip_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
23 |
24 |
33 |
34 |
39 |
40 |
51 |
52 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/custom_menu_dialog.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
23 |
24 |
32 |
33 |
42 |
43 |
51 |
52 |
61 |
62 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_audios_list.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
18 |
19 |
27 |
32 |
33 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_images_list.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
18 |
19 |
27 |
32 |
33 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_videos_list.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
18 |
19 |
27 |
28 |
33 |
34 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/images_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
13 |
14 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/layout_fullscreen_image.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/media_list_item_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
19 |
20 |
35 |
36 |
47 |
48 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/nav_header_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
22 |
23 |
36 |
37 |
41 |
42 |
48 |
49 |
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/video_list_item_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
19 |
20 |
33 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/welcome_activity.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
13 |
14 |
19 |
20 |
29 |
30 |
31 |
40 |
41 |
46 |
47 |
53 |
54 |
63 |
64 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/activity_main_drawer.xml:
--------------------------------------------------------------------------------
1 |
2 |
41 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/main_external_storage.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
10 |
16 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/main_internal_storage.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
10 |
16 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_black_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_black_white.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_blue.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_change_text_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_change_text_color.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_change_text_size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_change_text_size.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_dialog_not_readble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_dialog_not_readble.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_dialog_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_dialog_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_green.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_menu_change_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_menu_change_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_white_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-hdpi/ic_white_black.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_black_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_black_white.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_blue.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_change_text_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_change_text_color.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_change_text_size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_change_text_size.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_dialog_not_readble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_dialog_not_readble.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_dialog_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_dialog_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_green.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_menu_change_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_menu_change_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_white_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-mdpi/ic_white_black.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_black_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_black_white.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_blue.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_change_text_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_change_text_color.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_change_text_size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_change_text_size.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_dialog_not_readble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_dialog_not_readble.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_dialog_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_dialog_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_green.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_menu_change_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_menu_change_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_white_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xhdpi/ic_white_black.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_black_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_black_white.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_blue.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_change_text_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_change_text_color.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_change_text_size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_change_text_size.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_dialog_not_readble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_dialog_not_readble.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_dialog_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_dialog_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_green.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_menu_change_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_menu_change_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_white_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxhdpi/ic_white_black.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_black_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_black_white.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_blue.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_change_text_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_change_text_color.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_change_text_size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_change_text_size.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_dialog_not_readble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_dialog_not_readble.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_dialog_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_dialog_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_green.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_menu_change_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_menu_change_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_save.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_white_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/app/src/main/res/mipmap-xxxhdpi/ic_white_black.png
--------------------------------------------------------------------------------
/app/src/main/res/values-v21/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | #457699
5 | #184a6e
6 | #457699
7 | #FFFFFF
8 | #000000
9 | #aa000000
10 | #d9dce0
11 | #bfc4c9
12 |
13 | #222222
14 | #3b3f44
15 | #646663
16 | #222222
17 | #bfc4c9
18 | #616161
19 |
20 | #525151
21 | #3b3f44
22 | #e5e5e5
23 | #222
24 | #fff
25 | #0f0
26 | #2196F3
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 | 260dp
6 | 10dp
7 | 16dp
8 | 160dp
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
13 |
14 |
15 |
16 |
17 |
23 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/app_tracker.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 300
5 |
6 | true
7 |
8 | UA-88043694-1
9 | 100.0
10 | true
11 |
--------------------------------------------------------------------------------
/app/src/test/java/com/example/satish/filemanager/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.droids.tamada.filemanager;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.2.1'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
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
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sat Oct 15 21:21:18 IST 2016
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.14.1-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/keystore.jks:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/satishtamada/FileManager/a041573b16b13e850894a0223dd17f8ef4f5ffde/keystore.jks
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------