├── .DS_Store
├── .gitignore
├── README.md
├── android_dp_analysis_book_java
├── .DS_Store
├── .classpath
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
└── src
│ ├── .DS_Store
│ └── com
│ ├── .DS_Store
│ └── android
│ ├── .DS_Store
│ └── dp
│ ├── .DS_Store
│ └── book
│ ├── .DS_Store
│ ├── chapter02
│ ├── Singleton.java
│ └── company
│ │ └── Test.java
│ ├── chapter03
│ ├── Builder.java
│ ├── Computer.java
│ ├── Director.java
│ ├── Macbook.java
│ ├── MacbookBuilder.java
│ └── Test.java
│ ├── chapter04
│ ├── Client.java
│ └── WordDocument.java
│ ├── chapter07
│ ├── PriceCalculator.java
│ └── refactor
│ │ ├── BusStrategy.java
│ │ ├── CalculateStrategy.java
│ │ ├── SubwayStrategy.java
│ │ ├── TaxiStrategy.java
│ │ ├── TranficCalculator.java
│ │ └── UberStrategy.java
│ ├── chapter08
│ ├── Client.java
│ ├── TvController.java
│ └── refactor
│ │ ├── Client.java
│ │ ├── PowerController.java
│ │ ├── PowerOffState.java
│ │ ├── PowerOnState.java
│ │ ├── TvController.java
│ │ └── TvState.java
│ ├── chapter13
│ ├── CallOfDuty.java
│ ├── Caretaker.java
│ ├── Client.java
│ └── Memoto.java
│ ├── chapter16
│ ├── BusinessReport.java
│ ├── CEOVisitor.java
│ ├── CTOVisitor.java
│ ├── Client.java
│ ├── Engineer.java
│ ├── Manager.java
│ ├── Staff.java
│ └── Visitor.java
│ ├── chapter22
│ ├── Test.java
│ ├── Ticket.java
│ ├── TicketFactory.java
│ └── TrainTicket.java
│ ├── chapter23
│ ├── Camera.java
│ ├── MobilePhone.java
│ ├── Phone.java
│ ├── PhoneImpl.java
│ ├── SamsungCamera.java
│ └── Test.java
│ ├── chapter27
│ ├── MobilePhone.java
│ ├── absfactory
│ │ ├── FoxconnFactory.java
│ │ ├── MobileFactory.java
│ │ └── Test.java
│ ├── bridge
│ │ ├── Wow2D.java
│ │ ├── Wow3D.java
│ │ ├── WowForLinux.java
│ │ ├── WowForMac.java
│ │ └── WowGame.java
│ ├── builder
│ │ ├── Builder.java
│ │ ├── Director.java
│ │ ├── Ipad.java
│ │ ├── IpadBuilder.java
│ │ ├── Samsung.java
│ │ ├── SamsungBuilder.java
│ │ ├── SmartDevice.java
│ │ └── Test.java
│ ├── command
│ │ ├── AttackCommand.java
│ │ ├── Command.java
│ │ ├── General.java
│ │ ├── Receiver.java
│ │ ├── Soldier.java
│ │ └── Test.java
│ ├── decoration
│ │ ├── Level2Player.java
│ │ ├── Playable.java
│ │ ├── Player.java
│ │ └── Test.java
│ ├── facade
│ │ ├── CrashDAO.java
│ │ ├── CrashSDK.java
│ │ ├── CrashUploader.java
│ │ └── Test.java
│ ├── factory
│ │ ├── MobileFactory.java
│ │ ├── SamsungFactory.java
│ │ ├── Test.java
│ │ └── XiaoMiFactory.java
│ ├── mediator
│ │ ├── Host.java
│ │ ├── LianjiaMediator.java
│ │ ├── Participator.java
│ │ ├── RepairMan.java
│ │ ├── RoomMediator.java
│ │ ├── Tenant.java
│ │ └── Test.java
│ ├── proxy
│ │ ├── Game.java
│ │ ├── GameProxy.java
│ │ ├── Test.java
│ │ └── WOWGame.java
│ ├── simplefactory
│ │ ├── Meizu.java
│ │ ├── MobileFactory.java
│ │ ├── Samsung.java
│ │ ├── Test.java
│ │ └── XiaoMi.java
│ ├── state
│ │ ├── Client.java
│ │ ├── PowerOffState.java
│ │ ├── PowerOnState.java
│ │ ├── TvController.java
│ │ └── TvState.java
│ └── strategy
│ │ ├── Book.java
│ │ ├── NormalStrategy.java
│ │ ├── PriceCalculator.java
│ │ ├── PriceStrategy.java
│ │ ├── Strategy618.java
│ │ └── Test.java
│ └── test
│ ├── ResFinder.java
│ ├── ResItem.java
│ ├── ResType.java
│ └── Test.java
├── android_dp_note_demo
├── .classpath
├── .project
├── AndroidManifest.xml
├── ic_launcher-web.png
├── libs
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ ├── ic_launcher.png
│ │ ├── redo.png
│ │ └── undo.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ └── activity_main.xml
│ ├── values-v11
│ │ └── styles.xml
│ ├── values-v14
│ │ └── styles.xml
│ └── values
│ │ ├── strings.xml
│ │ └── styles.xml
└── src
│ └── com
│ └── example
│ └── android_dp_note
│ ├── MainActivity.java
│ ├── notemgr
│ ├── Memoto.java
│ └── NoteCaretaker.java
│ └── widgets
│ └── NoteEditText.java
├── android_dp_plugin
├── .classpath
├── .project
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── R.txt
│ ├── android_dp_plugin.jar
│ ├── jarlist.cache
│ └── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ │ └── drawable-xhdpi
│ │ └── ic_launcher.png
├── gen
│ └── com
│ │ └── example
│ │ └── android_dp_plugin
│ │ ├── BuildConfig.java
│ │ └── R.java
├── libs
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ └── activity_main.xml
│ ├── values-w820dp
│ │ └── dimens.xml
│ └── values
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
└── src
│ └── com
│ └── dp
│ └── plugin
│ ├── Attachable.java
│ ├── PluginActivity.java
│ ├── PluginApk.java
│ ├── PluginManager.java
│ ├── Pluginable.java
│ ├── conts
│ └── Constants.java
│ └── proxy
│ ├── ActivityProxy.java
│ └── LifeCircleController.java
├── android_dp_plugin_host
├── .classpath
├── .project
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── R.txt
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-36865fe76ebf40b044a4ca8914f47d46.jar
│ │ └── android_dp_plugin-eb16e3633e82c18db93c6ffa9c6a2a11.jar
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ └── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ └── resources.ap_
├── gen
│ └── com
│ │ └── example
│ │ ├── android_dp_plugin
│ │ └── R.java
│ │ └── android_dp_plugin_host
│ │ ├── BuildConfig.java
│ │ └── R.java
├── ic_launcher-web.png
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ └── activity_main.xml
│ ├── values-w820dp
│ │ └── dimens.xml
│ └── values
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
└── src
│ └── com
│ └── example
│ └── android_dp_plugin_host
│ └── MainActivity.java
├── android_dp_plugin_plugin
├── .classpath
├── .project
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── classes.dex
│ ├── res
│ │ └── crunch
│ │ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-ldpi
│ │ │ └── icon120.png
│ │ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ └── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ └── resources.ap_
├── gen
│ └── com
│ │ └── example
│ │ └── android_dp_plugin_plugin
│ │ ├── BuildConfig.java
│ │ └── R.java
├── ic_launcher-web.png
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ │ └── icon120.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ └── plugin_activity_main.xml
│ ├── values-w820dp
│ │ └── dimens.xml
│ └── values
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
└── src
│ └── com
│ └── example
│ └── android_dp_plugin_plugin
│ └── MainActivity.java
├── android_dp_state
├── .classpath
├── .project
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── R.txt
│ ├── classes.dex
│ ├── dexedLibs
│ │ └── appcompat_v7-159586c37f03375541b23bfdacc0405d.jar
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ └── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ └── resources.ap_
├── gen
│ ├── android
│ │ └── support
│ │ │ └── v7
│ │ │ └── appcompat
│ │ │ └── R.java
│ └── com
│ │ └── example
│ │ └── dp_state
│ │ ├── BuildConfig.java
│ │ └── R.java
├── ic_launcher-web.png
├── libs
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── activity_login.xml
│ │ └── activity_main.xml
│ ├── values-v11
│ │ └── styles.xml
│ ├── values-v14
│ │ └── styles.xml
│ └── values
│ │ ├── strings.xml
│ │ └── styles.xml
└── src
│ └── com
│ └── example
│ └── dp_state
│ ├── LoginActivity.java
│ ├── MainActivity.java
│ └── state
│ ├── LoginContext.java
│ ├── LoginedState.java
│ ├── LogoutState.java
│ └── UserState.java
├── appcompat_v7
├── .classpath
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── README.txt
├── bin
│ ├── AndroidManifest.xml
│ ├── R.txt
│ ├── android_dp-v7-appcompat.jar
│ ├── classes
│ │ └── .readme
│ └── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ │ ├── drawable-ldrtl-hdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── drawable-ldrtl-mdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── drawable-ldrtl-xhdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── drawable-ldrtl-xxhdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── drawable-ldrtl-xxxhdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── drawable-mdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ │ ├── drawable-xhdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ │ ├── drawable-xxhdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ │ └── drawable-xxxhdpi
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ └── abc_tab_indicator_mtrl_alpha.9.png
├── gen
│ └── android
│ │ └── support
│ │ └── v7
│ │ └── appcompat
│ │ ├── BuildConfig.java
│ │ └── R.java
├── libs
│ ├── android-support-v4.jar
│ └── android-support-v7-appcompat.jar
├── project.properties
├── res
│ ├── anim
│ │ ├── abc_fade_in.xml
│ │ ├── abc_fade_out.xml
│ │ ├── abc_slide_in_bottom.xml
│ │ ├── abc_slide_in_top.xml
│ │ ├── abc_slide_out_bottom.xml
│ │ └── abc_slide_out_top.xml
│ ├── color
│ │ ├── abc_background_cache_hint_selector_material_dark.xml
│ │ ├── abc_background_cache_hint_selector_material_light.xml
│ │ ├── abc_primary_text_disable_only_material_dark.xml
│ │ ├── abc_primary_text_disable_only_material_light.xml
│ │ ├── abc_primary_text_material_dark.xml
│ │ ├── abc_primary_text_material_light.xml
│ │ ├── abc_search_url_text.xml
│ │ ├── abc_secondary_text_material_dark.xml
│ │ └── abc_secondary_text_material_light.xml
│ ├── drawable-hdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ ├── drawable-ldrtl-hdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ ├── drawable-ldrtl-mdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ ├── drawable-ldrtl-xhdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ ├── drawable-ldrtl-xxhdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ ├── drawable-ldrtl-xxxhdpi
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ └── abc_spinner_mtrl_am_alpha.9.png
│ ├── drawable-mdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ ├── drawable-xhdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ ├── drawable-xxhdpi
│ │ ├── abc_ab_share_pack_holo_dark.9.png
│ │ ├── abc_ab_share_pack_holo_light.9.png
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_cab_background_top_mtrl_alpha.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_commit_search_api_mtrl_alpha.png
│ │ ├── abc_ic_go_search_api_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_menu_share_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_list_divider_mtrl_alpha.9.png
│ │ ├── abc_list_focused_holo.9.png
│ │ ├── abc_list_longpressed_holo.9.png
│ │ ├── abc_list_pressed_holo_dark.9.png
│ │ ├── abc_list_pressed_holo_light.9.png
│ │ ├── abc_list_selector_disabled_holo_dark.9.png
│ │ ├── abc_list_selector_disabled_holo_light.9.png
│ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png
│ │ ├── abc_popup_background_mtrl_mult.9.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ ├── abc_tab_indicator_mtrl_alpha.9.png
│ │ ├── abc_textfield_activated_mtrl_alpha.9.png
│ │ ├── abc_textfield_default_mtrl_alpha.9.png
│ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png
│ │ └── abc_textfield_search_default_mtrl_alpha.9.png
│ ├── drawable-xxxhdpi
│ │ ├── abc_btn_check_to_on_mtrl_000.png
│ │ ├── abc_btn_check_to_on_mtrl_015.png
│ │ ├── abc_btn_radio_to_on_mtrl_000.png
│ │ ├── abc_btn_radio_to_on_mtrl_015.png
│ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png
│ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png
│ │ ├── abc_ic_ab_back_mtrl_am_alpha.png
│ │ ├── abc_ic_clear_mtrl_alpha.png
│ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_cut_mtrl_alpha.png
│ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png
│ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png
│ │ ├── abc_ic_menu_selectall_mtrl_alpha.png
│ │ ├── abc_ic_search_api_mtrl_alpha.png
│ │ ├── abc_ic_voice_search_api_mtrl_alpha.png
│ │ ├── abc_spinner_mtrl_am_alpha.9.png
│ │ ├── abc_switch_track_mtrl_alpha.9.png
│ │ └── abc_tab_indicator_mtrl_alpha.9.png
│ ├── drawable
│ │ ├── abc_btn_check_material.xml
│ │ ├── abc_btn_radio_material.xml
│ │ ├── abc_cab_background_internal_bg.xml
│ │ ├── abc_cab_background_top_material.xml
│ │ ├── abc_edit_text_material.xml
│ │ ├── abc_item_background_holo_dark.xml
│ │ ├── abc_item_background_holo_light.xml
│ │ ├── abc_list_selector_background_transition_holo_dark.xml
│ │ ├── abc_list_selector_background_transition_holo_light.xml
│ │ ├── abc_list_selector_holo_dark.xml
│ │ ├── abc_list_selector_holo_light.xml
│ │ ├── abc_switch_thumb_material.xml
│ │ ├── abc_tab_indicator_material.xml
│ │ └── abc_textfield_search_material.xml
│ ├── layout-v11
│ │ └── abc_screen_content_include.xml
│ ├── layout
│ │ ├── abc_action_bar_title_item.xml
│ │ ├── abc_action_bar_up_container.xml
│ │ ├── abc_action_bar_view_list_nav_layout.xml
│ │ ├── abc_action_menu_item_layout.xml
│ │ ├── abc_action_menu_layout.xml
│ │ ├── abc_action_mode_bar.xml
│ │ ├── abc_action_mode_close_item_material.xml
│ │ ├── abc_activity_chooser_view.xml
│ │ ├── abc_activity_chooser_view_include.xml
│ │ ├── abc_activity_chooser_view_list_item.xml
│ │ ├── abc_expanded_menu_layout.xml
│ │ ├── abc_list_menu_item_checkbox.xml
│ │ ├── abc_list_menu_item_icon.xml
│ │ ├── abc_list_menu_item_layout.xml
│ │ ├── abc_list_menu_item_radio.xml
│ │ ├── abc_popup_menu_item_layout.xml
│ │ ├── abc_screen_content_include.xml
│ │ ├── abc_screen_simple.xml
│ │ ├── abc_screen_simple_overlay_action_mode.xml
│ │ ├── abc_screen_toolbar.xml
│ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ ├── abc_search_view.xml
│ │ ├── abc_simple_dropdown_hint.xml
│ │ └── support_simple_spinner_dropdown_item.xml
│ ├── values-af
│ │ └── strings.xml
│ ├── values-am
│ │ └── strings.xml
│ ├── values-ar
│ │ └── strings.xml
│ ├── values-bg
│ │ └── strings.xml
│ ├── values-bn-rBD
│ │ └── strings.xml
│ ├── values-ca
│ │ └── strings.xml
│ ├── values-cs
│ │ └── strings.xml
│ ├── values-da
│ │ └── strings.xml
│ ├── values-de
│ │ └── strings.xml
│ ├── values-el
│ │ └── strings.xml
│ ├── values-en-rGB
│ │ └── strings.xml
│ ├── values-en-rIN
│ │ └── strings.xml
│ ├── values-es-rUS
│ │ └── strings.xml
│ ├── values-es
│ │ └── strings.xml
│ ├── values-et-rEE
│ │ └── strings.xml
│ ├── values-eu-rES
│ │ └── strings.xml
│ ├── values-fa
│ │ └── strings.xml
│ ├── values-fi
│ │ └── strings.xml
│ ├── values-fr-rCA
│ │ └── strings.xml
│ ├── values-fr
│ │ └── strings.xml
│ ├── values-gl-rES
│ │ └── strings.xml
│ ├── values-hi
│ │ └── strings.xml
│ ├── values-hr
│ │ └── strings.xml
│ ├── values-hu
│ │ └── strings.xml
│ ├── values-hy-rAM
│ │ └── strings.xml
│ ├── values-in
│ │ └── strings.xml
│ ├── values-is-rIS
│ │ └── strings.xml
│ ├── values-it
│ │ └── strings.xml
│ ├── values-iw
│ │ └── strings.xml
│ ├── values-ja
│ │ └── strings.xml
│ ├── values-ka-rGE
│ │ └── strings.xml
│ ├── values-kk-rKZ
│ │ └── strings.xml
│ ├── values-km-rKH
│ │ └── strings.xml
│ ├── values-kn-rIN
│ │ └── strings.xml
│ ├── values-ko
│ │ └── strings.xml
│ ├── values-ky-rKG
│ │ └── strings.xml
│ ├── values-land
│ │ ├── bools.xml
│ │ ├── config.xml
│ │ ├── dimens.xml
│ │ └── dimens_material.xml
│ ├── values-large
│ │ ├── bools.xml
│ │ ├── config.xml
│ │ ├── dimens.xml
│ │ └── themes_base.xml
│ ├── values-lo-rLA
│ │ └── strings.xml
│ ├── values-lt
│ │ └── strings.xml
│ ├── values-lv
│ │ └── strings.xml
│ ├── values-mk-rMK
│ │ └── strings.xml
│ ├── values-ml-rIN
│ │ └── strings.xml
│ ├── values-mn-rMN
│ │ └── strings.xml
│ ├── values-mr-rIN
│ │ └── strings.xml
│ ├── values-ms-rMY
│ │ └── strings.xml
│ ├── values-my-rMM
│ │ └── strings.xml
│ ├── values-nb
│ │ └── strings.xml
│ ├── values-ne-rNP
│ │ └── strings.xml
│ ├── values-nl
│ │ └── strings.xml
│ ├── values-pl
│ │ └── strings.xml
│ ├── values-port
│ │ └── bools.xml
│ ├── values-pt-rPT
│ │ └── strings.xml
│ ├── values-pt
│ │ └── strings.xml
│ ├── values-ro
│ │ └── strings.xml
│ ├── values-ru
│ │ └── strings.xml
│ ├── values-si-rLK
│ │ └── strings.xml
│ ├── values-sk
│ │ └── strings.xml
│ ├── values-sl
│ │ └── strings.xml
│ ├── values-sr
│ │ └── strings.xml
│ ├── values-sv
│ │ └── strings.xml
│ ├── values-sw
│ │ └── strings.xml
│ ├── values-sw600dp
│ │ ├── config.xml
│ │ └── dimens.xml
│ ├── values-ta-rIN
│ │ └── strings.xml
│ ├── values-te-rIN
│ │ └── strings.xml
│ ├── values-th
│ │ └── strings.xml
│ ├── values-tl
│ │ └── strings.xml
│ ├── values-tr
│ │ └── strings.xml
│ ├── values-uk
│ │ └── strings.xml
│ ├── values-ur-rPK
│ │ └── strings.xml
│ ├── values-uz-rUZ
│ │ └── strings.xml
│ ├── values-v11
│ │ ├── styles_base.xml
│ │ ├── styles_base_text.xml
│ │ └── themes_base.xml
│ ├── values-v14
│ │ └── themes_base.xml
│ ├── values-v17
│ │ └── styles_rtl.xml
│ ├── values-v21
│ │ ├── styles_base.xml
│ │ ├── styles_base_text.xml
│ │ └── themes_base.xml
│ ├── values-vi
│ │ └── strings.xml
│ ├── values-w360dp
│ │ └── dimens.xml
│ ├── values-w480dp
│ │ ├── bools.xml
│ │ └── config.xml
│ ├── values-w500dp
│ │ └── dimens.xml
│ ├── values-w600dp
│ │ └── dimens.xml
│ ├── values-w720dp
│ │ └── bools.xml
│ ├── values-xlarge-land
│ │ └── dimens.xml
│ ├── values-xlarge
│ │ ├── bools.xml
│ │ └── dimens.xml
│ ├── values-zh-rCN
│ │ └── strings.xml
│ ├── values-zh-rHK
│ │ └── strings.xml
│ ├── values-zh-rTW
│ │ └── strings.xml
│ ├── values-zu
│ │ └── strings.xml
│ └── values
│ │ ├── attrs.xml
│ │ ├── bools.xml
│ │ ├── colors.xml
│ │ ├── colors_material.xml
│ │ ├── config.xml
│ │ ├── dimens.xml
│ │ ├── dimens_material.xml
│ │ ├── ids.xml
│ │ ├── strings.xml
│ │ ├── styles.xml
│ │ ├── styles_base.xml
│ │ ├── styles_base_text.xml
│ │ ├── styles_rtl.xml
│ │ ├── themes.xml
│ │ └── themes_base.xml
└── src
│ └── .readme
└── imageloader-demo
└── android_dp_chapter01
├── .classpath
├── .project
├── .settings
└── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── ic_launcher-web.png
├── proguard-project.txt
├── project.properties
├── res
├── drawable-hdpi
│ └── ic_launcher.png
├── drawable-mdpi
│ └── ic_launcher.png
├── drawable-xhdpi
│ └── ic_launcher.png
├── drawable-xxhdpi
│ └── ic_launcher.png
├── layout
│ └── activity_main.xml
├── values-v11
│ └── styles.xml
├── values-v14
│ └── styles.xml
└── values
│ ├── strings.xml
│ └── styles.xml
└── src
└── com
└── dp
├── MainActivity.java
└── chapter01
├── part1
├── ImageLoader.java
└── refactor
│ ├── ImageCache.java
│ └── ImageLoader.java
├── part2
├── ImageLoader.java
├── Test.java
├── cache
│ ├── DiskCache.java
│ ├── DoubleCache.java
│ └── MemoryCache.java
└── refactor
│ ├── ImageLoader.java
│ └── cache
│ ├── CacheTest.java
│ ├── DiskCache.java
│ ├── DoubleCache.java
│ ├── ImageCache.java
│ └── MemoryCache.java
├── part3
├── Window.java
├── refactor
│ └── ImageLoader.java
└── widgets
│ ├── ImageView.java
│ ├── TextView.java
│ └── View.java
├── part5
└── utils
│ └── CloseUtils.java
└── part6
├── Mediator.java
├── RentTestCase.java
├── Room.java
├── Tenant.java
└── refactor
├── Mediator.java
├── RentTestCase.java
├── Room.java
└── Tenant.java
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/.DS_Store
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.apk
2 | *.class
3 | */*/gen
4 | */*/bin
5 |
6 | */**/.DS_Store
7 |
8 | # Built application files
9 | *.apk
10 | *.ap_
11 |
12 | # Files for the Dalvik VM
13 | *.dex
14 |
15 | */**/.DS_Store
16 | # Java class files
17 | *.class
18 |
19 | # Generated files
20 | bin/
21 | gen/
22 |
23 | # Gradle files
24 | .gradle/
25 | build/
26 | /*/build/
27 |
28 | # Local configuration file (sdk path, etc)
29 | local.properties
30 |
31 | # Proguard folder generated by Eclipse
32 | proguard/
33 |
34 | # Log Files
35 | *.log
36 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 《Android源码设计模式解析与实战》
2 |
3 | > 为了尽量减少代码量,书中的代码都做了大量简化,因此示例代码只作为学习使用,不建议使用到项目中。
4 |
5 | ## 代码目录
6 |
7 | * imageloader-demo : 第一章的六大原则
8 | * `android_dp_analysis_book_java` : 第2、3、4、7、8、13、16、22、23章的 Java 示例代码;
9 | * `android_dp_note_demo` : 第十三章的 Android 示例;
10 | * `android_dp_state` : 第十六章的状态模式 Android 示例 ;
11 | * `android_dp_plugin、android_dp_plugin_host、android_dp_plugin_plugin`为第23章的动态加载框架(参考DL)的demo ;
12 | * appcompat_v7 : android demo需要依赖的库;
13 |
14 | * 书中的ImageLoader只是一个最简单的demo,更详细的ImageLoader 示例 在[这里](https://github.com/hehonghui/simple_imageloader) 。
15 | * 最后一章的例子在[这里](https://github.com/bboyfeiyu/the-tech-frontier-app) 。
16 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_analysis_book_java/.DS_Store
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | android_dp_analysis_book_java
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.jdt.core.javanature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_analysis_book_java/src/.DS_Store
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_analysis_book_java/src/com/.DS_Store
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_analysis_book_java/src/com/android/.DS_Store
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_analysis_book_java/src/com/android/dp/.DS_Store
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_analysis_book_java/src/com/android/dp/book/.DS_Store
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter03/Builder.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter03;
2 |
3 | //抽象 Builder 类
4 | public abstract class Builder {
5 | // 设置主机
6 | public abstract void buildBoard(String board);
7 |
8 | // 设置显示器
9 | public abstract void buildDisplay(String displau);
10 |
11 | // 设置操作系统
12 | public abstract void buildOS();
13 |
14 | // 创建 ComputerÏ
15 | public abstract Computer create();
16 | }
17 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter03/Director.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter03;
2 |
3 | //Director 类,负责构造 Computer
4 | public class Director {
5 | Builder mBuilder = null;
6 |
7 | /**
8 | * @param builder
9 | */
10 | public Director(Builder builder) {
11 | mBuilder = builder;
12 | }
13 |
14 | /**
15 | * 构建对象
16 | */
17 | public void construct(String board, String display) {
18 | mBuilder.buildBoard(board);
19 | mBuilder.buildDisplay(display);
20 | mBuilder.buildOS();
21 | }
22 | }
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter03/Macbook.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter03;
2 |
3 | //具体的 Computer 类,Macbook
4 |
5 | public class Macbook extends Computer {
6 | protected Macbook() {
7 | }
8 |
9 | @Override
10 | public void setOS() {
11 | mOS = "Mac OS X 10.10";
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter03/MacbookBuilder.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter03;
2 |
3 | //具体的 Builder 类,
4 |
5 | public class MacbookBuilder extends Builder {
6 | private Computer mComputer = new Macbook();
7 |
8 | @Override
9 | public void buildBoard(String board) {
10 | mComputer.setBoard(board);
11 | }
12 |
13 | @Override
14 | public void buildDisplay(String display) {
15 | mComputer.setDisplay(display);
16 | }
17 |
18 | @Override
19 | public void buildOS() {
20 | mComputer.setOS();
21 | }
22 |
23 | @Override
24 | public Computer create() {
25 | return mComputer;
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter03/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter03;
2 |
3 | //测试代码
4 | public class Test {
5 | public static void main(String[] args) { // 构建器
6 | Builder builder = new MacbookBuilder();
7 | // Director
8 | Director pcDirector = new Director(builder);
9 | // 封装构建过程, 4 核, 内存 2GB, Mac 系统
10 | pcDirector.construct("英特尔主板","Retina 显示器");
11 | // 构建电脑, 输出相关信息
12 | System.out.println("Computer Info : " + builder.create().toString());
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/MobilePhone.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27;
2 |
3 | /**
4 | * 电话
5 | * @author mrsimple
6 | *
7 | */
8 | public abstract class MobilePhone {
9 | public void makeCall() {
10 | System.out.println("打电话");
11 | }
12 |
13 | public void surfInternet() {
14 | System.out.println("上网");
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/absfactory/MobileFactory.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.absfactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public abstract class MobileFactory {
6 | public abstract MobilePhone createXiaoMiPhone() ;
7 | public abstract MobilePhone createSamsungPhone() ;
8 | public abstract MobilePhone createMeizuPhone() ;
9 | }
10 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/absfactory/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.absfactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class Test {
6 | public static void main(String[] args) {
7 | MobileFactory factory = new FoxconnFactory() ;
8 | // 创建小米手机
9 | MobilePhone xiaomi = factory.createXiaoMiPhone() ;
10 | // 创建魅族手机
11 | MobilePhone meizu = factory.createMeizuPhone() ;
12 | // 创建三星手机
13 | MobilePhone samsung = factory.createSamsungPhone() ;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/bridge/Wow2D.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.bridge;
2 |
3 | public class Wow2D implements WowGame {
4 | @Override
5 | public void draw() {
6 |
7 | }
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/bridge/Wow3D.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.bridge;
2 |
3 | public class Wow3D implements WowGame {
4 | @Override
5 | public void draw() {
6 |
7 | }
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/bridge/WowForLinux.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.bridge;
2 |
3 | public class WowForLinux implements WowGame {
4 | @Override
5 | public void draw() {
6 |
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/bridge/WowForMac.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.bridge;
2 |
3 | public class WowForMac implements WowGame {
4 | @Override
5 | public void draw() {
6 |
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/bridge/WowGame.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.bridge;
2 |
3 | public interface WowGame {
4 | public void draw() ;
5 | }
6 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/builder/Builder.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.builder;
2 |
3 | //抽象 Builder 类
4 | public abstract class Builder {
5 | // 设置cpu
6 | public abstract void buildCpu(String board);
7 | // 设置显示器
8 | public abstract void buildDisplay(String display);
9 | // 设置操作系统
10 | public abstract void buildOS();
11 | // 创建 手机
12 | public abstract SmartDevice create();
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/builder/Director.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.builder;
2 |
3 | //Director 类,负责构造手机
4 | public class Director {
5 | Builder mBuilder = null;
6 |
7 | /**
8 | * @param builder
9 | */
10 | public Director(Builder builder) {
11 | mBuilder = builder;
12 | }
13 |
14 | /**
15 | * 构建对象 【这里的过程类似于 模板方法】
16 | */
17 | public void construct(String cpu, String display) {
18 | mBuilder.buildCpu(cpu);
19 | mBuilder.buildDisplay(display);
20 | mBuilder.buildOS();
21 | }
22 | }
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/builder/Ipad.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.builder;
2 |
3 | //具体的 Computer 类,Macbook
4 |
5 | public class Ipad extends SmartDevice {
6 | protected Ipad() {
7 | }
8 |
9 | @Override
10 | public void setOS() {
11 | mOS = "iOS 9.3.2系统";
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/builder/IpadBuilder.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.builder;
2 |
3 | // Ipad Builder 类,
4 | public class IpadBuilder extends Builder {
5 | private SmartDevice mMobilePhone = new Ipad();
6 |
7 | @Override
8 | public void buildCpu(String cpu) {
9 | mMobilePhone.setCPU(cpu) ;
10 | }
11 |
12 | @Override
13 | public void buildDisplay(String display) {
14 | mMobilePhone.setDisplay(display);
15 | }
16 |
17 | @Override
18 | public void buildOS() {
19 | mMobilePhone.setOS();
20 | }
21 |
22 | @Override
23 | public SmartDevice create() {
24 | return mMobilePhone;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/builder/Samsung.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.builder;
2 |
3 | //具体的 Computer 类,Macbook
4 |
5 | public class Samsung extends SmartDevice {
6 | protected Samsung() {
7 | }
8 |
9 | @Override
10 | public void setOS() {
11 | mOS = "三星 Android系统";
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/builder/SamsungBuilder.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.builder;
2 |
3 | // 三星 Builder 类,
4 | public class SamsungBuilder extends Builder {
5 | private SmartDevice mMobilePhone = new Samsung();
6 |
7 | @Override
8 | public void buildCpu(String cpu) {
9 | mMobilePhone.setCPU(cpu) ;
10 | }
11 |
12 | @Override
13 | public void buildDisplay(String display) {
14 | mMobilePhone.setDisplay(display);
15 | }
16 |
17 | @Override
18 | public void buildOS() {
19 | mMobilePhone.setOS();
20 | }
21 |
22 | @Override
23 | public SmartDevice create() {
24 | return mMobilePhone;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/command/AttackCommand.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.command;
2 |
3 | public class AttackCommand extends Command {
4 |
5 | public AttackCommand(Receiver receiver) {
6 | super(receiver);
7 | }
8 |
9 | @Override
10 | public void execute() {
11 | mReceiver.executeCommand() ;
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/command/Command.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.command;
2 |
3 | public abstract class Command {
4 |
5 | Receiver mReceiver ;
6 |
7 | public Command(Receiver receiver) {
8 | this.mReceiver = receiver;
9 | }
10 |
11 | public abstract void execute() ;
12 | }
13 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/command/General.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.command;
2 |
3 | public class General {
4 |
5 | Command mCommand;
6 |
7 | public void setCommand(Command cmd) {
8 | this.mCommand = cmd;
9 | }
10 |
11 | public void publishCommand() {
12 | mCommand.execute();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/command/Receiver.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.command;
2 |
3 | public abstract class Receiver {
4 | public abstract void executeCommand() ;
5 | }
6 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/command/Soldier.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.command;
2 |
3 | public class Soldier extends Receiver {
4 | @Override
5 | public void executeCommand() {
6 | System.out.println("士兵执行命令");
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/command/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.command;
2 |
3 | public class Test {
4 | public static void main(String[] args) {
5 | // 命令的发布者, invoker
6 | General general = new General() ;
7 | // 具体的命令, 命令中有执行者
8 | Command command = new AttackCommand(new Soldier()) ;
9 |
10 | general.setCommand(command) ;
11 | // 发布命令. [参考 Message, Handler的设计]
12 | general.publishCommand() ;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/decoration/Level2Player.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.decoration;
2 |
3 | public class Level2Player implements Playable {
4 |
5 | Playable mPlayer ;
6 | public Level2Player(Playable playable) {
7 | mPlayer = playable ;
8 | }
9 |
10 | @Override
11 | public void attack() {
12 | System.out.println("装配战斧");
13 | mPlayer.attack();
14 | System.out.println("敌人被砍伤,生命值再减10");
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/decoration/Playable.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.decoration;
2 |
3 | public interface Playable {
4 | public void attack() ;
5 | }
6 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/decoration/Player.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.decoration;
2 |
3 | public class Player implements Playable {
4 |
5 | @Override
6 | public void attack() {
7 | System.out.println("攻击敌人, 生命值减1");
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/decoration/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.decoration;
2 |
3 | public class Test {
4 | public static void main(String[] args) {
5 | Playable playable = new Player() ;
6 | playable.attack();
7 |
8 | Playable level2 = new Level2Player(playable) ;
9 | level2.attack() ;
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/facade/CrashDAO.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.facade;
2 |
3 | public class CrashDAO {
4 | public void insert(String stacktrace) {
5 | System.out.println("上传失败, 插入数据库 : " + stacktrace);
6 | }
7 |
8 | public String query() {
9 | System.out.println("读取crash缓存 ");
10 | return "缓存的crash 信息";
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/facade/CrashUploader.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.facade;
2 |
3 | import java.util.Random;
4 |
5 | public class CrashUploader {
6 | public boolean upload(String stacktrace) {
7 | System.out.println("上传crash信息 : " + stacktrace);
8 | return new Random().nextInt(10) % 4 == 0 ;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/facade/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.facade;
2 |
3 | public class Test {
4 | public static void main(String[] args) {
5 | CrashSDK excepHandler = new CrashSDK() ;
6 | excepHandler.setExceptionHandler() ;
7 |
8 | throw new NullPointerException("空指针异常") ;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/factory/MobileFactory.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.factory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public abstract class MobileFactory {
6 | public abstract MobilePhone createPhone() ;
7 | }
8 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/factory/SamsungFactory.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.factory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 | import com.android.dp.book.chapter27.simplefactory.Samsung;
5 |
6 | //三星手机工厂创建三星手机
7 | public class SamsungFactory extends MobileFactory {
8 |
9 | @Override
10 | public MobilePhone createPhone() {
11 | return new Samsung();
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/factory/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.factory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class Test {
6 | public static void main(String[] args) {
7 | MobileFactory factory = new SamsungFactory() ;
8 | // 创建三星手机
9 | MobilePhone samsung = factory.createPhone() ;
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/factory/XiaoMiFactory.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.factory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 | import com.android.dp.book.chapter27.simplefactory.XiaoMi;
5 |
6 | // 小米手机工厂创建小米手机
7 | public class XiaoMiFactory extends MobileFactory {
8 |
9 | @Override
10 | public MobilePhone createPhone() {
11 | return new XiaoMi();
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/Host.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 | // 房主
3 | public class Host extends Participator {
4 |
5 | public Host(RoomMediator mediator) {
6 | super(mediator);
7 | }
8 |
9 | public void makePrice() {
10 | System.out.println("房东报价");
11 | }
12 |
13 | public void sign() {
14 | System.out.println("房东签合同");
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/LianjiaMediator.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 |
3 | public class LianjiaMediator extends RoomMediator {
4 |
5 | @Override
6 | public void rentRoom() {
7 | mHost.makePrice();
8 | mHost.sign();
9 | if (mWorker != null) {
10 | mWorker.repair();
11 | }
12 | System.out.println("完成租房!");
13 | }
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/Participator.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 |
3 | public abstract class Participator {
4 | RoomMediator mMediator ;
5 |
6 | public Participator(RoomMediator mediator) {
7 | this.mMediator = mediator;
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/RepairMan.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 |
3 | public class RepairMan extends Participator {
4 |
5 | public RepairMan(RoomMediator mediator) {
6 | super(mediator);
7 | }
8 |
9 | public void repair() {
10 | System.out.println("维修人员检查并维修家电");
11 | }
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/RoomMediator.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 |
3 | public abstract class RoomMediator {
4 | Host mHost ;
5 | Tenant mTenant ;
6 | RepairMan mWorker ;
7 |
8 |
9 | public void setHost(Host host) {
10 | this.mHost = host;
11 | }
12 |
13 | public void setTenant(Tenant tenant) {
14 | this.mTenant = tenant;
15 | }
16 |
17 | public void setWorker(RepairMan mWorker) {
18 | this.mWorker = mWorker;
19 | }
20 |
21 | public abstract void rentRoom() ;
22 | }
23 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/Tenant.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 |
3 | // 承租人
4 | public class Tenant extends Participator {
5 |
6 | public Tenant(RoomMediator mediator) {
7 | super(mediator);
8 | }
9 |
10 | public void rentARoom() {
11 | System.out.println("----租户通过中介租房----");
12 | mMediator.rentRoom() ;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/mediator/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.mediator;
2 |
3 | public class Test {
4 | public static void main(String[] args) {
5 |
6 | // 中介
7 | RoomMediator mediator = new LianjiaMediator() ;
8 |
9 | // 参与者
10 | Host host = new Host(mediator) ;
11 | Tenant tenant = new Tenant(mediator) ;
12 | RepairMan worker = new RepairMan(mediator) ;
13 |
14 | // 将参与者设置给中介
15 | mediator.setHost(host) ;
16 | mediator.setTenant(tenant) ;
17 | mediator.setWorker(worker) ;
18 |
19 | // 执行操作
20 | tenant.rentARoom() ;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/proxy/Game.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.proxy;
2 |
3 | public interface Game {
4 | public void play() ;
5 | }
6 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/proxy/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.proxy;
2 |
3 | public class Test {
4 | public static void main(String[] args) {
5 | Game wowGame = new WOWGame() ;
6 | Game proxy = new GameProxy(wowGame, "mrsimple", "testpwd");
7 | proxy.play() ;
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/proxy/WOWGame.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.proxy;
2 |
3 | public class WOWGame implements Game {
4 |
5 | @Override
6 | public void play() {
7 | System.out.println("打魔兽");
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/simplefactory/Meizu.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.simplefactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class Meizu extends MobilePhone {
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/simplefactory/MobileFactory.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.simplefactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class MobileFactory {
6 | // 简单工厂根据品牌创建对象
7 | public static MobilePhone createPhone(String brand) {
8 | if ( brand.equals("samsung")) {
9 | return new Samsung() ;
10 | } else if ( brand.equals("xiaomi")) {
11 | return new XiaoMi() ;
12 | } else if ( brand.equals("meizu")) {
13 | return new Meizu() ;
14 | }
15 | return null ;
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/simplefactory/Samsung.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.simplefactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class Samsung extends MobilePhone {
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/simplefactory/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.simplefactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class Test {
6 | public static void main(String[] args) {
7 | // 创建三星手机
8 | MobilePhone samsung = MobileFactory.createPhone("samsung");
9 | // 创建小米手机
10 | MobilePhone xiaomi = MobileFactory.createPhone("xiaomi");
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/simplefactory/XiaoMi.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.simplefactory;
2 |
3 | import com.android.dp.book.chapter27.MobilePhone;
4 |
5 | public class XiaoMi extends MobilePhone {
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/strategy/Book.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.strategy;
2 |
3 | // 书籍类
4 | public class Book {
5 | private float mPrice ;
6 |
7 | public Book(float price) {
8 | this.mPrice = price;
9 | }
10 |
11 | public float getPrice() {
12 | return mPrice;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/strategy/NormalStrategy.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.strategy;
2 |
3 | // 平时 0.85折优惠
4 | public class NormalStrategy extends PriceStrategy {
5 |
6 | @Override
7 | public float calculate(Book product) {
8 | return product.getPrice() * 0.85f;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/strategy/PriceCalculator.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.strategy;
2 |
3 | public class PriceCalculator {
4 |
5 | PriceStrategy mStrategy ;
6 |
7 | public void setStrategy(PriceStrategy mStrategy) {
8 | this.mStrategy = mStrategy;
9 | }
10 |
11 | public void calculate(Book product) {
12 | System.out.println("商品价格为: " + mStrategy.calculate(product) );
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/strategy/PriceStrategy.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.strategy;
2 |
3 | public abstract class PriceStrategy {
4 | public abstract float calculate(Book product) ;
5 | }
6 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/strategy/Strategy618.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.strategy;
2 |
3 | // 京东618半价优惠
4 | public class Strategy618 extends PriceStrategy {
5 |
6 | @Override
7 | public float calculate(Book product) {
8 | return product.getPrice() / 2;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/android_dp_analysis_book_java/src/com/android/dp/book/chapter27/strategy/Test.java:
--------------------------------------------------------------------------------
1 | package com.android.dp.book.chapter27.strategy;
2 |
3 | public class Test {
4 | public static void main(String[] args) {
5 | Book product = new Book(100) ;
6 |
7 | PriceCalculator calculator = new PriceCalculator() ;
8 | calculator.setStrategy(new NormalStrategy()) ;
9 | calculator.calculate(product);
10 |
11 | // 策略替换
12 | calculator.setStrategy(new Strategy618()) ;
13 | calculator.calculate(product);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/android_dp_note_demo/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android_dp_note_demo/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/ic_launcher-web.png
--------------------------------------------------------------------------------
/android_dp_note_demo/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/android_dp_note_demo/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_note_demo/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_note_demo/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_note_demo/res/drawable-xhdpi/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/res/drawable-xhdpi/redo.png
--------------------------------------------------------------------------------
/android_dp_note_demo/res/drawable-xhdpi/undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/res/drawable-xhdpi/undo.png
--------------------------------------------------------------------------------
/android_dp_note_demo/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_note_demo/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_note_demo/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/android_dp_note_demo/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/android_dp_note_demo/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | android_dp_note
5 | Hello world!
6 | 写点嘛~
7 | 保存
8 |
9 |
--------------------------------------------------------------------------------
/android_dp_plugin/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android_dp_plugin/bin/R.txt:
--------------------------------------------------------------------------------
1 | int dimen activity_horizontal_margin 0x7f040000
2 | int dimen activity_vertical_margin 0x7f040001
3 | int drawable ic_launcher 0x7f020000
4 | int layout activity_main 0x7f030000
5 | int string action_settings 0x7f050002
6 | int string app_name 0x7f050000
7 | int string hello_world 0x7f050001
8 | int style AppBaseTheme 0x7f060000
9 | int style AppTheme 0x7f060001
10 |
--------------------------------------------------------------------------------
/android_dp_plugin/bin/android_dp_plugin.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/bin/android_dp_plugin.jar
--------------------------------------------------------------------------------
/android_dp_plugin/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependency. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 |
--------------------------------------------------------------------------------
/android_dp_plugin/bin/res/crunch/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/bin/res/crunch/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin/bin/res/crunch/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/bin/res/crunch/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin/bin/res/crunch/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/bin/res/crunch/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin/gen/com/example/android_dp_plugin/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.android_dp_plugin;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/android_dp_plugin/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/android_dp_plugin/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=true
16 |
--------------------------------------------------------------------------------
/android_dp_plugin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 | 64dp
9 |
10 |
11 |
--------------------------------------------------------------------------------
/android_dp_plugin/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 16dp
5 | 16dp
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android_dp_plugin/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | android_dp_plugin
5 | Hello world!
6 | Settings
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android_dp_plugin_host/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/R.txt:
--------------------------------------------------------------------------------
1 | int dimen activity_horizontal_margin 0x7f040000
2 | int dimen activity_vertical_margin 0x7f040001
3 | int drawable ic_launcher 0x7f020000
4 | int layout activity_main 0x7f030000
5 | int string action_settings 0x7f050002
6 | int string app_name 0x7f050000
7 | int string hello_world 0x7f050001
8 | int style AppBaseTheme 0x7f060000
9 | int style AppTheme 0x7f060001
10 |
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/classes.dex
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/dexedLibs/android-support-v4-36865fe76ebf40b044a4ca8914f47d46.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/dexedLibs/android-support-v4-36865fe76ebf40b044a4ca8914f47d46.jar
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/dexedLibs/android_dp_plugin-eb16e3633e82c18db93c6ffa9c6a2a11.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/dexedLibs/android_dp_plugin-eb16e3633e82c18db93c6ffa9c6a2a11.jar
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependency. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 |
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/res/crunch/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/res/crunch/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/res/crunch/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/res/crunch/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/res/crunch/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/res/crunch/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/res/crunch/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/res/crunch/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/bin/resources.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/bin/resources.ap_
--------------------------------------------------------------------------------
/android_dp_plugin_host/gen/com/example/android_dp_plugin_host/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.android_dp_plugin_host;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/android_dp_plugin_host/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/ic_launcher-web.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_host/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 | 64dp
9 |
10 |
11 |
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 16dp
5 | 16dp
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android_dp_plugin_host/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | android_dp_plugin_host
5 | 我是宿主应用
6 | Settings
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/classes.dex
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/res/crunch/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/res/crunch/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/res/crunch/drawable-ldpi/icon120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/res/crunch/drawable-ldpi/icon120.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/res/crunch/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/res/crunch/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/res/crunch/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/res/crunch/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/res/crunch/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/res/crunch/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/bin/resources.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/bin/resources.ap_
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/gen/com/example/android_dp_plugin_plugin/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.android_dp_plugin_plugin;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/ic_launcher-web.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/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_dp_plugin_plugin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/drawable-ldpi/icon120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/res/drawable-ldpi/icon120.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_plugin_plugin/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 | 64dp
9 |
10 |
11 |
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 16dp
5 | 16dp
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android_dp_plugin_plugin/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | android_dp_plugin_plugin
5 | Settings
6 | 我是插件Activity呐
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android_dp_state/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android_dp_state/bin/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/classes.dex
--------------------------------------------------------------------------------
/android_dp_state/bin/dexedLibs/appcompat_v7-159586c37f03375541b23bfdacc0405d.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/dexedLibs/appcompat_v7-159586c37f03375541b23bfdacc0405d.jar
--------------------------------------------------------------------------------
/android_dp_state/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependency. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 | 1430617261000 995624 3e4e879d0b3dc11f2feb3f55e77e3b5bd82c4a28 /Users/mrsimple/dev/github/android_dp_analysis_code/android_dp_state/libs/android-support-v4.jar
5 | 1418645504000 995624 3e4e879d0b3dc11f2feb3f55e77e3b5bd82c4a28 /Users/mrsimple/dev/github/android_dp_analysis_code/appcompat_v7/libs/android-support-v4.jar
6 |
--------------------------------------------------------------------------------
/android_dp_state/bin/res/crunch/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/res/crunch/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/bin/res/crunch/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/res/crunch/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/bin/res/crunch/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/res/crunch/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/bin/res/crunch/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/res/crunch/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/bin/resources.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/bin/resources.ap_
--------------------------------------------------------------------------------
/android_dp_state/gen/com/example/dp_state/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.dp_state;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/android_dp_state/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/ic_launcher-web.png
--------------------------------------------------------------------------------
/android_dp_state/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/android_dp_state/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/android_dp_state/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android_dp_state/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/android_dp_state/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/android_dp_state/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | dp-state
5 | Hello world!
6 | 用户名
7 | 密码
8 | 登录
9 | 注销
10 | 转发
11 |
12 |
--------------------------------------------------------------------------------
/appcompat_v7/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/appcompat_v7/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3 | org.eclipse.jdt.core.compiler.compliance=1.6
4 | org.eclipse.jdt.core.compiler.source=1.6
5 |
--------------------------------------------------------------------------------
/appcompat_v7/README.txt:
--------------------------------------------------------------------------------
1 | Library Project including compatibility ActionBar.
2 |
3 | This can be used by an Android project to provide
4 | access to ActionBar on applications running on API 7+.
5 |
6 | There is technically no source, but the src folder is necessary
7 | to ensure that the build system works. The content is actually
8 | located in libs/android-support-v7-appcompat.jar.
9 | The accompanying resources must also be included in the application.
10 |
11 |
--------------------------------------------------------------------------------
/appcompat_v7/bin/android_dp-v7-appcompat.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/android_dp-v7-appcompat.jar
--------------------------------------------------------------------------------
/appcompat_v7/bin/classes/.readme:
--------------------------------------------------------------------------------
1 | This hidden file is there to ensure there is an src folder.
2 | Once we support binary library this will go away.
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/bin/res/crunch/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/gen/android/support/v7/appcompat/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package android.support.v7.appcompat;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/appcompat_v7/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/appcompat_v7/libs/android-support-v7-appcompat.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/libs/android-support-v7-appcompat.jar
--------------------------------------------------------------------------------
/appcompat_v7/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-21
15 | android.library=true
16 |
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/appcompat_v7/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
--------------------------------------------------------------------------------
/appcompat_v7/src/.readme:
--------------------------------------------------------------------------------
1 | This hidden file is there to ensure there is an src folder.
2 | Once we support binary library this will go away.
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3 | org.eclipse.jdt.core.compiler.compliance=1.6
4 | org.eclipse.jdt.core.compiler.source=1.6
5 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/imageloader-demo/android_dp_chapter01/ic_launcher-web.png
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/imageloader-demo/android_dp_chapter01/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/imageloader-demo/android_dp_chapter01/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/imageloader-demo/android_dp_chapter01/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hehonghui/android_dp_analysis_code/4fdf2a34292cf6f3472e67fdabf5c84ad6e23cf5/imageloader-demo/android_dp_chapter01/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | android_dp_analysis_book
5 | Hello world!
6 |
7 |
8 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/src/com/dp/MainActivity.java:
--------------------------------------------------------------------------------
1 |
2 | package com.dp;
3 |
4 | import com.android.dp.book.R;
5 |
6 | import android.app.Activity;
7 | import android.os.Bundle;
8 |
9 | public class MainActivity extends Activity {
10 |
11 | @Override
12 | protected void onCreate(Bundle savedInstanceState) {
13 | super.onCreate(savedInstanceState);
14 | setContentView(R.layout.activity_main);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/src/com/dp/chapter01/part3/Window.java:
--------------------------------------------------------------------------------
1 | package com.dp.chapter01.part3;
2 |
3 | import com.dp.chapter01.part3.widgets.View;
4 |
5 | /**
6 | * 简单的窗口类
7 | * @author mrsimple
8 | *
9 | */
10 | public class Window {
11 | public void show(View child) {
12 | // 绘制各种视图
13 | child.draw();
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/src/com/dp/chapter01/part3/widgets/ImageView.java:
--------------------------------------------------------------------------------
1 | package com.dp.chapter01.part3.widgets;
2 |
3 | public class ImageView extends View {
4 |
5 | @Override
6 | public void draw() {
7 | // 绘制图片
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/src/com/dp/chapter01/part3/widgets/TextView.java:
--------------------------------------------------------------------------------
1 | package com.dp.chapter01.part3.widgets;
2 |
3 | public class TextView extends View {
4 |
5 | @Override
6 | public void draw() {
7 | // 绘制文本
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/imageloader-demo/android_dp_chapter01/src/com/dp/chapter01/part3/widgets/View.java:
--------------------------------------------------------------------------------
1 | package com.dp.chapter01.part3.widgets;
2 |
3 | /**
4 | * 视图基类
5 | * @author mrsimple
6 | *
7 | */
8 | public abstract class View {
9 | public abstract void draw() ;
10 |
11 | public void measure(int width, int height){
12 | // 测量视图大小
13 | }
14 |
15 | }
16 |
--------------------------------------------------------------------------------