diff --git a/Android.mk b/Android.mk index d418b69..9091900 100644 --- a/Android.mk +++ b/Android.mk @@ -1,4 +1,4 @@ -# Copyright 2009, The Android-x86 Open Source Project +# Copyright 2012, The Android-x86 Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,12 +16,15 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional - +LOCAL_STATIC_JAVA_LIBRARIES := libandroid-support LOCAL_SRC_FILES := $(call all-java-files-under, src) LOCAL_PACKAGE_NAME := FileManager +LOCAL_JNI_SHARED_LIBRARIES := libaccess include $(BUILD_PACKAGE) +LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := libandroid-support:libs/android-support-v2.jar +include $(BUILD_MULTI_PREBUILT) # Use the folloing include to make our test apk. include $(call all-makefiles-under,$(LOCAL_PATH)) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index ed16985..a9a195b 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,111 +1,154 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jni/Android.mk b/jni/Android.mk new file mode 100644 index 0000000..5bdf1a2 --- /dev/null +++ b/jni/Android.mk @@ -0,0 +1,10 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := libaccess +LOCAL_SRC_FILES := access.c +LOCAL_MODULE_TAGS := optional +LOCAL_PRELINK_MODULE := false + +include $(BUILD_SHARED_LIBRARY) diff --git a/jni/access.c b/jni/access.c new file mode 100644 index 0000000..ecb2957 --- /dev/null +++ b/jni/access.c @@ -0,0 +1,16 @@ +#include +#include +#include + +jboolean Java_org_openintents_cmfilemanager_util_FileUtils_access(JNIEnv * env, jclass clazz, jstring path, jint mode) +{ + jboolean isCopy; + const char * szPath = (*env)->GetStringUTFChars(env, path, &isCopy); + int result = access(szPath, mode); + (*env)->ReleaseStringUTFChars(env, path, szPath); + if(result == 0){ + return JNI_TRUE; + } else { + return JNI_FALSE; + } +} diff --git a/libs/android-support-v2.jar b/libs/android-support-v2.jar new file mode 100644 index 0000000..74cd240 Binary files /dev/null and b/libs/android-support-v2.jar differ diff --git a/readme.txt b/readme.txt index a48f39f..0ed2707 100644 --- a/readme.txt +++ b/readme.txt @@ -1,77 +1,138 @@ - **************************************************************************** - * Copyright (C) 2008 OpenIntents.org * - * * - * Licensed under the Apache License, Version 2.0 (the "License"); * - * you may not use this file except in compliance with the License. * - * You may obtain a copy of the License at * - * * - * http://www.apache.org/licenses/LICENSE-2.0 * - * * - * Unless required by applicable law or agreed to in writing, software * - * distributed under the License is distributed on an "AS IS" BASIS, * - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * - * See the License for the specific language governing permissions and * - * limitations under the License. * - **************************************************************************** - - -OI File Manager is an open file manager that -seamlessly cooperates with other applications. - -To obtain the current release, visit - http://www.openintents.org - - ---------------------------------------------------------- -release: 1.1.3 -date: 2010-05-29 -- backward compatibility with Android 1.5. - ---------------------------------------------------------- -release: 1.1.2 -date: 2010-05-29 -- fix thumbnail size on high-density devices. -- translations: Occitan (post 1500), Polish, Russian - ---------------------------------------------------------- -release: 1.1.1 -date: 2009-12-26 -- recursive delete -- translations: Dutch, Faroese, Korean, Lao, Romanian - ---------------------------------------------------------- -release: 1.1.0 -date: 2009-10-30 -- display file size. -- show thumbnails for images. -- copy files. -- handle GET_CONTENT action. -- added support for all WebKit extensions. -- added support for following extensions: - .amr, .3gp -- added support for upper case or mixed case letter - extensions (like .png and .PNG) -- fix for send files via MMS. -- support for OI About. -- encode file URIs properly -- translations: Chinese, French, German, Japanese, Spanish - ---------------------------------------------------------- -release: 1.0.0 -date: 2008-12-10 - -- First public release on Android SDK 1.0. - -Features: -- Show list of files. -- Icons for home (root) directory and SD card. -- Directory structure displayed through clickable - buttons. -- Alternatively, the current path can be displayed - in an input field. -- Supports PICK_FILE and PICK_DIRECTORY intents. -- Support for many file endings and mime types. -- "Back" key works for directories clicked in the - list. -- Create directory, rename, delete files. -- Move files. + **************************************************************************** + * Copyright (C) 2008-2012 OpenIntents.org * + * * + * Licensed under the Apache License, Version 2.0 (the "License"); * + * you may not use this file except in compliance with the License. * + * You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software * + * distributed under the License is distributed on an "AS IS" BASIS, * + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * + * See the License for the specific language governing permissions and * + * limitations under the License. * + **************************************************************************** + + +OI File Manager is an open file manager that +seamlessly cooperates with other applications. + +To obtain the current release, visit + http://www.openintents.org + + +---------------- +release: 1.2 +date: 2012-02-18 + +Thanks to Google Code-in for many of the following patches: +(see http://www.google-melange.com/gci/homepage/google/gci2011 ) + +- Limit icon size in file list (issue 319, patch by John Doe) +- Hide optional commands in context menu (issue 329, patch by John Doe). +- "Save as" integration for Google Mail (Google Code-in task by Matěj Konečný) +- Option to hide hidden files (Google Code-In task by Matěj Konečný) +- Filter by file type (issue 166, Google Code-in task by Aviral Dasgupta) +- Show file details through context menu (Google Code-in task by Aviral Dasgupta) +- Option to sort files (Google Code-In task by Matěj Konečný) +- Keep list position after delete (Google Code-in task by Chickenbellyfinn) +- Show correct toast when deleting file (issue 365, Google Code-in task by Chickenbellyfinn) +- Apk icon support (Google Code-in task by Philip Hayes) +- Bookmarks of folder locations (Google Code-In task by Matěj Konečný) +- Details dialog shows size of folder contents (Google Code-In task by Philip Hayes) +- Fixed bug with details dialog on API 7 and earlier (Google Code-In task by Philip Hayes) +- Fixed bug with More option (issue 330, Google Code-In task by Matěj Konečný) +- Select/Deselect all in multi-select (Google Code-In task by Philip Hayes) +- remember previous directory when attaching files (Google Code-in task by Matěj Konečný) +- Better visibility for multi-select selection (issue 460, Google Code-in task by Philip Hayes) +- support for ZIP compression (patch by Evgeniy Berlog) +- warning dialog for file extension changes (issue 397, patch by Evgeniy Berlog) +- Refresh menu item (Google Code-in task by Aviral Dasgupta) +- Lazy loading of thumbnails (issue 271, Google Code-in task by Philip Hayes) +- Use custom icons for certain file types (issue 333, Google Code-in task by Matěj Konečný) +- Accept return key for entering a path (issue 461, Google Code-in task by Matěj Konečný) +- Support View Intent to open the filemanager (issue 396, Google Code-in task by Chickenbellyfinn) +- support for multi-select ZIP compression (patch by Evgeniy Berlog) + +- new icons and translations by Google Code-in students + +---------------- +release: 1.1.6 +date: 2011-06-02 +- fix bug that prevented sending attachments through menu "Send" (patch by Alex) + +---------------- +release: 1.1.5 +date: 2011-05-28 +- new menu item for multiselect: copy, move or delete multiple files at once (patch by John Doe). +- case insensitive sort order (issue 334, patch by Vishrut Patel). +- handle projections in the provider (issue 324, patch by Dominik Pretzsch). +- drop "mimetype" from provider path. +- delete files and folders in background (issue 294, patch by Damienix). + +---------------- +release: 1.1.4 +date: 2011-02-05 +- new application icon for Android 2.0 or higher. +- exclude/include directories from media scan (activate this feature in advanced settings). +- allow app installation on external storage (requires Android 2.2 or higher) +- fix browser file upload (issue 288) +- support Android 2.3. +- translations into various languages. +- bug fixes (issue 308, 318). + +---------------- +release: 1.1.3 +date: 2010-05-29 +- backward compatibility with Android 1.5. + +---------------- +release: 1.1.2 +date: 2010-05-29 +- fix thumbnail size on high-density devices. +- translations: Occitan (post 1500), Polish, Russian + +---------------- +release: 1.1.1 +date: 2009-12-26 +- recursive delete +- translations: Dutch, Faroese, Korean, Lao, Romanian + +---------------- +release: 1.1.0 +date: 2009-10-30 +- display file size. +- show thumbnails for images. +- copy files. +- handle GET_CONTENT action. +- added support for all WebKit extensions. +- added support for following extensions: + .amr, .3gp +- added support for upper case or mixed case letter + extensions (like .png and .PNG) +- fix for send files via MMS. +- support for OI About. +- encode file URIs properly +- translations: Chinese, French, German, Japanese, Spanish + +---------------- +release: 1.0.0 +date: 2008-12-10 + +- First public release on Android SDK 1.0. + +Features: +- Show list of files. +- Icons for home (root) directory and SD card. +- Directory structure displayed through clickable + buttons. +- Alternatively, the current path can be displayed + in an input field. +- Supports PICK_FILE and PICK_DIRECTORY intents. +- Support for many file endings and mime types. +- "Back" key works for directories clicked in the + list. +- Create directory, rename, delete files. +- Move files. + diff --git a/res/drawable-hdpi/ic_button_checked.png b/res/drawable-hdpi/ic_button_checked.png new file mode 100644 index 0000000..3946ce6 Binary files /dev/null and b/res/drawable-hdpi/ic_button_checked.png differ diff --git a/res/drawable-hdpi/ic_button_unchecked.png b/res/drawable-hdpi/ic_button_unchecked.png new file mode 100644 index 0000000..760160c Binary files /dev/null and b/res/drawable-hdpi/ic_button_unchecked.png differ diff --git a/res/drawable-hdpi/ic_launcher_android_package.png b/res/drawable-hdpi/ic_launcher_android_package.png new file mode 100644 index 0000000..3eab20e Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_android_package.png differ diff --git a/res/drawable-hdpi/ic_launcher_archive.png b/res/drawable-hdpi/ic_launcher_archive.png new file mode 100644 index 0000000..cdee677 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_archive.png differ diff --git a/res/drawable-hdpi/ic_launcher_audio.png b/res/drawable-hdpi/ic_launcher_audio.png new file mode 100644 index 0000000..4f0f293 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_audio.png differ diff --git a/res/drawable-hdpi/ic_launcher_file.png b/res/drawable-hdpi/ic_launcher_file.png new file mode 100644 index 0000000..5d38632 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_file.png differ diff --git a/res/drawable-hdpi/ic_launcher_folder.png b/res/drawable-hdpi/ic_launcher_folder.png index c01d1e9..a6c4a66 100644 Binary files a/res/drawable-hdpi/ic_launcher_folder.png and b/res/drawable-hdpi/ic_launcher_folder.png differ diff --git a/res/drawable-hdpi/ic_launcher_folder_open.png b/res/drawable-hdpi/ic_launcher_folder_open.png deleted file mode 100644 index ea2dbe5..0000000 Binary files a/res/drawable-hdpi/ic_launcher_folder_open.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_launcher_home.png b/res/drawable-hdpi/ic_launcher_home.png index 359b3c0..51bf087 100644 Binary files a/res/drawable-hdpi/ic_launcher_home.png and b/res/drawable-hdpi/ic_launcher_home.png differ diff --git a/res/drawable-hdpi/ic_launcher_home_small.png b/res/drawable-hdpi/ic_launcher_home_small.png new file mode 100644 index 0000000..7cee12d Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_home_small.png differ diff --git a/res/drawable-hdpi/ic_launcher_image.png b/res/drawable-hdpi/ic_launcher_image.png new file mode 100644 index 0000000..8f07c9d Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_image.png differ diff --git a/res/drawable-hdpi/ic_launcher_sdcard.png b/res/drawable-hdpi/ic_launcher_sdcard.png new file mode 100644 index 0000000..2bafedd Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_sdcard.png differ diff --git a/res/drawable-hdpi/ic_launcher_sdcard_small.png b/res/drawable-hdpi/ic_launcher_sdcard_small.png new file mode 100644 index 0000000..f381ce4 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_sdcard_small.png differ diff --git a/res/drawable-hdpi/ic_launcher_text_csv.png b/res/drawable-hdpi/ic_launcher_text_csv.png new file mode 100644 index 0000000..ff2fe52 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_text_csv.png differ diff --git a/res/drawable-hdpi/ic_launcher_text_html.png b/res/drawable-hdpi/ic_launcher_text_html.png new file mode 100644 index 0000000..177e533 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_text_html.png differ diff --git a/res/drawable-hdpi/ic_launcher_text_plain.png b/res/drawable-hdpi/ic_launcher_text_plain.png new file mode 100644 index 0000000..77c418b Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_text_plain.png differ diff --git a/res/drawable-hdpi/ic_launcher_text_xml.png b/res/drawable-hdpi/ic_launcher_text_xml.png new file mode 100644 index 0000000..1f46119 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_text_xml.png differ diff --git a/res/drawable-hdpi/ic_launcher_video.png b/res/drawable-hdpi/ic_launcher_video.png new file mode 100644 index 0000000..f51d363 Binary files /dev/null and b/res/drawable-hdpi/ic_launcher_video.png differ diff --git a/res/drawable-hdpi/ic_menu_add_folder.png b/res/drawable-hdpi/ic_menu_add_folder.png new file mode 100644 index 0000000..a543780 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_add_folder.png differ diff --git a/res/drawable-hdpi/ic_menu_star.png b/res/drawable-hdpi/ic_menu_star.png new file mode 100644 index 0000000..4f667a4 Binary files /dev/null and b/res/drawable-hdpi/ic_menu_star.png differ diff --git a/res/drawable-hdpi/icon_file.png b/res/drawable-hdpi/icon_file.png deleted file mode 100644 index 18972d3..0000000 Binary files a/res/drawable-hdpi/icon_file.png and /dev/null differ diff --git a/res/drawable/icon_sdcard_small.png b/res/drawable-ldpi/ic_button_checked.png similarity index 64% rename from res/drawable/icon_sdcard_small.png rename to res/drawable-ldpi/ic_button_checked.png index af33fc8..33460bc 100644 Binary files a/res/drawable/icon_sdcard_small.png and b/res/drawable-ldpi/ic_button_checked.png differ diff --git a/res/drawable/icon_sdcard.png b/res/drawable-ldpi/ic_button_unchecked.png similarity index 56% rename from res/drawable/icon_sdcard.png rename to res/drawable-ldpi/ic_button_unchecked.png index 7a0f307..3350e3a 100644 Binary files a/res/drawable/icon_sdcard.png and b/res/drawable-ldpi/ic_button_unchecked.png differ diff --git a/res/drawable-ldpi/ic_launcher_android_package.png b/res/drawable-ldpi/ic_launcher_android_package.png new file mode 100644 index 0000000..7ba5510 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_android_package.png differ diff --git a/res/drawable-ldpi/ic_launcher_archive.png b/res/drawable-ldpi/ic_launcher_archive.png new file mode 100644 index 0000000..d79a889 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_archive.png differ diff --git a/res/drawable-ldpi/ic_launcher_audio.png b/res/drawable-ldpi/ic_launcher_audio.png new file mode 100644 index 0000000..0fe6d96 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_audio.png differ diff --git a/res/drawable-ldpi/ic_launcher_file.png b/res/drawable-ldpi/ic_launcher_file.png new file mode 100644 index 0000000..f03ecd9 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_file.png differ diff --git a/res/drawable-ldpi/ic_launcher_folder.png b/res/drawable-ldpi/ic_launcher_folder.png new file mode 100644 index 0000000..86e6237 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_folder.png differ diff --git a/res/drawable-ldpi/ic_launcher_home.png b/res/drawable-ldpi/ic_launcher_home.png new file mode 100644 index 0000000..18499f6 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_home.png differ diff --git a/res/drawable-ldpi/ic_launcher_home_small.png b/res/drawable-ldpi/ic_launcher_home_small.png new file mode 100644 index 0000000..aaea8d5 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_home_small.png differ diff --git a/res/drawable-ldpi/ic_launcher_image.png b/res/drawable-ldpi/ic_launcher_image.png new file mode 100644 index 0000000..ec61084 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_image.png differ diff --git a/res/drawable-ldpi/ic_launcher_sdcard.png b/res/drawable-ldpi/ic_launcher_sdcard.png new file mode 100644 index 0000000..4493cb3 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_sdcard.png differ diff --git a/res/drawable-ldpi/ic_launcher_sdcard_small.png b/res/drawable-ldpi/ic_launcher_sdcard_small.png new file mode 100644 index 0000000..d6e9a64 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_sdcard_small.png differ diff --git a/res/drawable-ldpi/ic_launcher_text_csv.png b/res/drawable-ldpi/ic_launcher_text_csv.png new file mode 100644 index 0000000..03c28f6 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_text_csv.png differ diff --git a/res/drawable-ldpi/ic_launcher_text_html.png b/res/drawable-ldpi/ic_launcher_text_html.png new file mode 100644 index 0000000..027df7e Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_text_html.png differ diff --git a/res/drawable-ldpi/ic_launcher_text_plain.png b/res/drawable-ldpi/ic_launcher_text_plain.png new file mode 100644 index 0000000..bbdfdc4 Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_text_plain.png differ diff --git a/res/drawable-ldpi/ic_launcher_text_xml.png b/res/drawable-ldpi/ic_launcher_text_xml.png new file mode 100644 index 0000000..1d9cb3c Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_text_xml.png differ diff --git a/res/drawable-ldpi/ic_launcher_video.png b/res/drawable-ldpi/ic_launcher_video.png new file mode 100644 index 0000000..01737bc Binary files /dev/null and b/res/drawable-ldpi/ic_launcher_video.png differ diff --git a/res/drawable-ldpi/ic_menu_add_folder.png b/res/drawable-ldpi/ic_menu_add_folder.png new file mode 100644 index 0000000..54d3d44 Binary files /dev/null and b/res/drawable-ldpi/ic_menu_add_folder.png differ diff --git a/res/drawable-ldpi/ic_menu_star.png b/res/drawable-ldpi/ic_menu_star.png new file mode 100644 index 0000000..b88f010 Binary files /dev/null and b/res/drawable-ldpi/ic_menu_star.png differ diff --git a/res/drawable-hdpi/icon_sdcard.png b/res/drawable-mdpi/ic_button_checked.png similarity index 55% rename from res/drawable-hdpi/icon_sdcard.png rename to res/drawable-mdpi/ic_button_checked.png index f3a13c1..f61ce16 100644 Binary files a/res/drawable-hdpi/icon_sdcard.png and b/res/drawable-mdpi/ic_button_checked.png differ diff --git a/res/drawable-mdpi/ic_button_unchecked.png b/res/drawable-mdpi/ic_button_unchecked.png new file mode 100644 index 0000000..35da16f Binary files /dev/null and b/res/drawable-mdpi/ic_button_unchecked.png differ diff --git a/res/drawable-mdpi/ic_launcher_android_package.png b/res/drawable-mdpi/ic_launcher_android_package.png new file mode 100644 index 0000000..6f6d330 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_android_package.png differ diff --git a/res/drawable-mdpi/ic_launcher_archive.png b/res/drawable-mdpi/ic_launcher_archive.png new file mode 100644 index 0000000..4d2cf41 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_archive.png differ diff --git a/res/drawable-mdpi/ic_launcher_audio.png b/res/drawable-mdpi/ic_launcher_audio.png new file mode 100644 index 0000000..5966966 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_audio.png differ diff --git a/res/drawable-mdpi/ic_launcher_file.png b/res/drawable-mdpi/ic_launcher_file.png new file mode 100644 index 0000000..fc6d6bb Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_file.png differ diff --git a/res/drawable-mdpi/ic_launcher_folder.png b/res/drawable-mdpi/ic_launcher_folder.png new file mode 100644 index 0000000..a8bb315 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_folder.png differ diff --git a/res/drawable-mdpi/ic_launcher_home.png b/res/drawable-mdpi/ic_launcher_home.png new file mode 100644 index 0000000..7cee12d Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_home.png differ diff --git a/res/drawable-mdpi/ic_launcher_home_small.png b/res/drawable-mdpi/ic_launcher_home_small.png new file mode 100644 index 0000000..44922f7 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_home_small.png differ diff --git a/res/drawable-mdpi/ic_launcher_image.png b/res/drawable-mdpi/ic_launcher_image.png new file mode 100644 index 0000000..0a67693 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_image.png differ diff --git a/res/drawable-mdpi/ic_launcher_sdcard.png b/res/drawable-mdpi/ic_launcher_sdcard.png new file mode 100644 index 0000000..f381ce4 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_sdcard.png differ diff --git a/res/drawable-mdpi/ic_launcher_sdcard_small.png b/res/drawable-mdpi/ic_launcher_sdcard_small.png new file mode 100644 index 0000000..8c3601c Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_sdcard_small.png differ diff --git a/res/drawable-mdpi/ic_launcher_text_csv.png b/res/drawable-mdpi/ic_launcher_text_csv.png new file mode 100644 index 0000000..698635e Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_text_csv.png differ diff --git a/res/drawable-mdpi/ic_launcher_text_html.png b/res/drawable-mdpi/ic_launcher_text_html.png new file mode 100644 index 0000000..43ca0c4 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_text_html.png differ diff --git a/res/drawable-mdpi/ic_launcher_text_plain.png b/res/drawable-mdpi/ic_launcher_text_plain.png new file mode 100644 index 0000000..0d655c4 Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_text_plain.png differ diff --git a/res/drawable-mdpi/ic_launcher_text_xml.png b/res/drawable-mdpi/ic_launcher_text_xml.png new file mode 100644 index 0000000..97056dd Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_text_xml.png differ diff --git a/res/drawable-mdpi/ic_launcher_video.png b/res/drawable-mdpi/ic_launcher_video.png new file mode 100644 index 0000000..f2160ea Binary files /dev/null and b/res/drawable-mdpi/ic_launcher_video.png differ diff --git a/res/drawable-mdpi/ic_menu_add_folder.png b/res/drawable-mdpi/ic_menu_add_folder.png new file mode 100644 index 0000000..11e82d9 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_add_folder.png differ diff --git a/res/drawable-mdpi/ic_menu_star.png b/res/drawable-mdpi/ic_menu_star.png new file mode 100644 index 0000000..0c22fe8 Binary files /dev/null and b/res/drawable-mdpi/ic_menu_star.png differ diff --git a/res/drawable/ic_button_checked.png b/res/drawable/ic_button_checked.png new file mode 100644 index 0000000..3946ce6 Binary files /dev/null and b/res/drawable/ic_button_checked.png differ diff --git a/res/drawable/ic_button_unchecked.png b/res/drawable/ic_button_unchecked.png new file mode 100644 index 0000000..760160c Binary files /dev/null and b/res/drawable/ic_button_unchecked.png differ diff --git a/res/drawable/ic_launcher_folder.png b/res/drawable/ic_launcher_folder.png index fd45fa6..ed31ba5 100644 Binary files a/res/drawable/ic_launcher_folder.png and b/res/drawable/ic_launcher_folder.png differ diff --git a/res/drawable/ic_launcher_folder_open.png b/res/drawable/ic_launcher_folder_open.png index a706e94..0723014 100644 Binary files a/res/drawable/ic_launcher_folder_open.png and b/res/drawable/ic_launcher_folder_open.png differ diff --git a/res/drawable/ic_launcher_home.png b/res/drawable/ic_launcher_home.png index 94ff50d..84af2a2 100644 Binary files a/res/drawable/ic_launcher_home.png and b/res/drawable/ic_launcher_home.png differ diff --git a/res/drawable/ic_launcher_home_small.png b/res/drawable/ic_launcher_home_small.png index 1c496cc..8660912 100644 Binary files a/res/drawable/ic_launcher_home_small.png and b/res/drawable/ic_launcher_home_small.png differ diff --git a/res/drawable/ic_launcher_sdcard.png b/res/drawable/ic_launcher_sdcard.png new file mode 100644 index 0000000..808c1f0 Binary files /dev/null and b/res/drawable/ic_launcher_sdcard.png differ diff --git a/res/drawable/ic_launcher_sdcard_small.png b/res/drawable/ic_launcher_sdcard_small.png new file mode 100644 index 0000000..c1c4004 Binary files /dev/null and b/res/drawable/ic_launcher_sdcard_small.png differ diff --git a/res/drawable/ic_menu_multiselect.png b/res/drawable/ic_menu_multiselect.png new file mode 100644 index 0000000..c1ce6e2 Binary files /dev/null and b/res/drawable/ic_menu_multiselect.png differ diff --git a/res/drawable/ic_menu_star.png b/res/drawable/ic_menu_star.png new file mode 100644 index 0000000..4f667a4 Binary files /dev/null and b/res/drawable/ic_menu_star.png differ diff --git a/res/drawable/icon_file.png b/res/drawable/icon_file.png index 8bad16a..510fb2c 100644 Binary files a/res/drawable/icon_file.png and b/res/drawable/icon_file.png differ diff --git a/res/layout/dialog_details.xml b/res/layout/dialog_details.xml new file mode 100644 index 0000000..750827d --- /dev/null +++ b/res/layout/dialog_details.xml @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/layout/dialog_new_folder.xml b/res/layout/dialog_new_folder.xml index 127b34d..0f11ef9 100644 --- a/res/layout/dialog_new_folder.xml +++ b/res/layout/dialog_new_folder.xml @@ -1,25 +1,25 @@ - - + + + + + diff --git a/res/layout/filelist.xml b/res/layout/filelist.xml index 297f140..7be2911 100644 --- a/res/layout/filelist.xml +++ b/res/layout/filelist.xml @@ -1,65 +1,101 @@ - + android:layout_height="fill_parent"> + + + + + + + + + - - - - - + - + android:layout_weight="1" + android:layout_height="wrap_content" /> +