├── .gitignore ├── AndroidManifest.xml ├── README.md ├── ant.properties ├── libs └── gson-2.2.2.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── btn_default_disabled_focused_holo_light.9.png │ ├── btn_default_disabled_holo_light.9.png │ ├── btn_default_focused_holo_light.9.png │ ├── btn_default_normal_holo_light.9.png │ ├── btn_default_pressed_holo_light.9.png │ ├── ic_action_add.png │ ├── ic_action_add_grey.png │ ├── ic_action_clear.png │ ├── ic_action_clear_grey.png │ ├── ic_action_clear_white.png │ ├── ic_action_edit.png │ ├── ic_action_edit_grey.png │ ├── ic_action_globe.png │ ├── ic_action_link.png │ ├── ic_action_more.png │ ├── ic_action_more_grey.png │ ├── ic_action_more_white.png │ ├── ic_action_settings.png │ ├── ic_action_settings_grey.png │ ├── ic_action_settings_white.png │ ├── ic_action_trash.png │ ├── ic_action_trash_grey.png │ ├── ic_action_trash_white.png │ ├── ic_launcher.png │ ├── list_activated_holo.9.png │ ├── list_focused_holo.9.png │ ├── list_longpressed_holo.9.png │ ├── list_pressed_holo_light.9.png │ ├── list_selector_disabled_holo_light.9.png │ ├── shortcut_icon.png │ ├── textfield_activated_holo_light.9.png │ ├── textfield_default_holo_light.9.png │ ├── textfield_disabled_focused_holo_light.9.png │ ├── textfield_disabled_holo_light.9.png │ └── textfield_focused_holo_light.9.png ├── drawable-mdpi │ ├── btn_default_disabled_focused_holo_light.9.png │ ├── btn_default_disabled_holo_light.9.png │ ├── btn_default_focused_holo_light.9.png │ ├── btn_default_normal_holo_light.9.png │ ├── btn_default_pressed_holo_light.9.png │ ├── ic_action_add.png │ ├── ic_action_add_grey.png │ ├── ic_action_clear.png │ ├── ic_action_clear_grey.png │ ├── ic_action_clear_white.png │ ├── ic_action_edit.png │ ├── ic_action_edit_grey.png │ ├── ic_action_globe.png │ ├── ic_action_link.png │ ├── ic_action_settings.png │ ├── ic_action_settings_grey.png │ ├── ic_action_settings_white.png │ ├── ic_action_trash.png │ ├── ic_action_trash_grey.png │ ├── ic_action_trash_white.png │ ├── ic_launcher.png │ ├── list_activated_holo.9.png │ ├── list_focused_holo.9.png │ ├── list_longpressed_holo.9.png │ ├── list_pressed_holo_light.9.png │ ├── list_selector_disabled_holo_light.9.png │ ├── shortcut_icon.png │ ├── textfield_activated_holo_light.9.png │ ├── textfield_default_holo_light.9.png │ ├── textfield_disabled_focused_holo_light.9.png │ ├── textfield_disabled_holo_light.9.png │ └── textfield_focused_holo_light.9.png ├── drawable-xhdpi │ ├── btn_default_disabled_focused_holo_light.9.png │ ├── btn_default_disabled_holo_light.9.png │ ├── btn_default_focused_holo_light.9.png │ ├── btn_default_normal_holo_light.9.png │ ├── btn_default_pressed_holo_light.9.png │ ├── clear_data.png │ ├── ic_action_add.png │ ├── ic_action_add_grey.png │ ├── ic_action_clear.png │ ├── ic_action_clear_grey.png │ ├── ic_action_clear_white.png │ ├── ic_action_edit.png │ ├── ic_action_edit_grey.png │ ├── ic_action_globe.png │ ├── ic_action_link.png │ ├── ic_action_settings.png │ ├── ic_action_settings_grey.png │ ├── ic_action_settings_white.png │ ├── ic_action_trash.png │ ├── ic_action_trash_grey.png │ ├── ic_action_trash_white.png │ ├── ic_launcher.png │ ├── list_activated_holo.9.png │ ├── list_focused_holo.9.png │ ├── list_longpressed_holo.9.png │ ├── list_pressed_holo_light.9.png │ ├── list_selector_disabled_holo_light.9.png │ ├── shortcut_icon.png │ ├── textfield_activated_holo_light.9.png │ ├── textfield_default_holo_light.9.png │ ├── textfield_disabled_focused_holo_light.9.png │ ├── textfield_disabled_holo_light.9.png │ └── textfield_focused_holo_light.9.png ├── drawable-xxhdpi │ ├── ic_launcher.png │ └── shortcut_icon.png ├── drawable │ ├── add_imageview.xml │ ├── background_repeat.xml │ ├── background_repeat_dark.xml │ ├── background_texture.png │ ├── background_texture_dark.png │ ├── btn_default_holo_light.xml │ ├── clear_imageview.xml │ ├── clear_imageview_dark.xml │ ├── delete_imageview.xml │ ├── delete_imageview_dark.xml │ ├── devdrawer_widget_preview.png │ ├── edit_imageview.xml │ ├── edit_text_holo_light.xml │ ├── list_selector_background_transition_holo_light.xml │ ├── list_selector_holo_light.xml │ ├── listview_button_background_normal.png │ ├── listview_button_background_pressed.png │ ├── listview_button_selector.xml │ ├── more_imageview.xml │ ├── more_imageview_dark.xml │ ├── settings_imageview.xml │ └── settings_imageview_dark.xml ├── layout-land │ └── list_item_more.xml ├── layout-sw600dp │ └── list_item_more.xml ├── layout │ ├── activity_choice.xml │ ├── activity_choice_list_item.xml │ ├── custom_ab_title.xml │ ├── dropdown_list_item.xml │ ├── edit_dialog.xml │ ├── legacy_dialog.xml │ ├── list_item.xml │ ├── list_item_more.xml │ ├── list_item_more_legacy.xml │ ├── locale_list_item.xml │ ├── locale_switcher.xml │ ├── main.xml │ ├── package_list_item.xml │ ├── widget_layout.xml │ └── widget_layout_dark.xml ├── values-v11 │ ├── bools.xml │ ├── devdrawertheme_styles.xml │ └── devdrawertheme_themes.xml ├── values │ ├── bools.xml │ ├── colors.xml │ ├── devdrawertheme_styles.xml │ ├── devdrawertheme_themes.xml │ └── strings.xml └── xml │ ├── preferences.xml │ └── widget_info.xml └── src ├── android └── app │ ├── ActivityManagerNative.java │ └── IActivityManager.java └── com └── owentech └── DevDrawer ├── activities ├── ChooseActivityDialog.java ├── ClickHandlingActivity.java ├── EditDialog.java ├── LegacyDialog.java ├── LocaleSwitcher.java ├── MainActivity.java └── PrefActivity.java ├── adapters ├── ActivityListAdapter.java ├── FilterListAdapter.java ├── LegacyListAdapter.java ├── LocaleListAdapter.java └── PartialMatchAdapter.java ├── appwidget ├── DDWidgetProvider.java ├── DDWidgetService.java └── DDWidgetViewsFactory.java ├── receivers ├── AppInstalledReceiver.java └── AppUninstalledReceiver.java └── utils ├── AddAllAppsAsync.java ├── Constants.java ├── Database.java ├── PackageCollection.java ├── RootFeatures.java └── RootLocaleSwitcher.java /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | 18 | # Eclipse project files 19 | .classpath 20 | .project 21 | .settings 22 | 23 | # IntelliJ IDEA project files 24 | .idea 25 | *.iml 26 | *.eml 27 | classes 28 | 29 | # Command line 30 | build.xml 31 | 32 | # Mac specific 33 | .DS_Store 34 | 35 | # Sonar 36 | .sonar 37 | 38 | # ProGuard 39 | proguard_logs/dump.txt 40 | proguard_logs/seeds.txt 41 | proguard_logs/usage.txt 42 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 70 | 71 | 72 | 73 | 75 | 76 | 78 | 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DevDrawer 2 | 3 | ** No longer maintained. Sorry I just don't have the time. ** 4 | ** The code is disgusting in here, but if there's anything you want, feel free to take ** 5 | 6 | An Android application by [Tony Owen](https://plus.google.com/111365666249481367719) designed to help developers by automatically adding their apps to a widget for easy launching / uninstalling / reinstalling etc. 7 | 8 | Root features such as one click uninstall, and clear cache added by [Ronald Ammann](https://plus.google.com/115926327659831685384/posts). 9 | 10 | This project needs a library dependency to [libsuperuser](https://github.com/Chainfire/libsuperuser). 11 | 12 | [Download DevDrawer in the Google Play Store](https://play.google.com/store/apps/details?id=com.owentech.DevDrawer). 13 | -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked into Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | -------------------------------------------------------------------------------- /libs/gson-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/libs/gson-2.2.2.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library.reference.1=../libsuperuser 16 | 17 | -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_add.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_add_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_add_grey.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_clear.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_clear_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_clear_grey.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_clear_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_edit.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_edit_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_edit_grey.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_globe.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_link.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_more.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_more_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_more_grey.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_more_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_settings_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_settings_grey.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_settings_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_settings_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_trash.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_trash_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_trash_grey.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_trash_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_action_trash_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/list_activated_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/list_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/list_longpressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shortcut_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/shortcut_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-hdpi/textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_add.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_add_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_add_grey.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_clear.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_clear_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_clear_grey.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_clear_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_edit.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_edit_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_edit_grey.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_globe.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_link.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_settings_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_settings_grey.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_settings_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_settings_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_trash.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_trash_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_trash_grey.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_trash_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_action_trash_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/list_activated_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/list_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/list_longpressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shortcut_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/shortcut_icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-mdpi/textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/clear_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/clear_data.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_add.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_add_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_add_grey.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_clear.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_clear_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_clear_grey.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_clear_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_edit_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_edit_grey.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_globe.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_link.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_settings_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_settings_grey.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_settings_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_settings_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_trash.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_trash_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_trash_grey.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_trash_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_action_trash_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/list_activated_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/list_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/list_longpressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/shortcut_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/shortcut_icon.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xhdpi/textfield_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/shortcut_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable-xxhdpi/shortcut_icon.png -------------------------------------------------------------------------------- /res/drawable/add_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/background_repeat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/background_repeat_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/background_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable/background_texture.png -------------------------------------------------------------------------------- /res/drawable/background_texture_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable/background_texture_dark.png -------------------------------------------------------------------------------- /res/drawable/btn_default_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 33 | -------------------------------------------------------------------------------- /res/drawable/clear_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/clear_imageview_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/delete_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/delete_imageview_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/devdrawer_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable/devdrawer_widget_preview.png -------------------------------------------------------------------------------- /res/drawable/edit_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/edit_text_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/drawable/list_selector_background_transition_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/drawable/list_selector_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /res/drawable/listview_button_background_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable/listview_button_background_normal.png -------------------------------------------------------------------------------- /res/drawable/listview_button_background_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunitowen/DevDrawer/e39902df0d1a394c8a7150287797aa5c80f44a34/res/drawable/listview_button_background_pressed.png -------------------------------------------------------------------------------- /res/drawable/listview_button_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/more_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/more_imageview_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/settings_imageview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/settings_imageview_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/layout-land/list_item_more.xml: -------------------------------------------------------------------------------- 1 | 5 |