├── .classpath ├── .project ├── AndroidManifest.xml ├── LICENSE ├── ListViewAnimator.apk ├── README.md ├── bin ├── AndroidManifest.xml ├── ListViewAnimator.apk ├── R.txt ├── classes.dex ├── classes │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ └── com │ │ └── witheyjr │ │ └── listviewanimator │ │ ├── BuildConfig.class │ │ ├── ContentsWrapper.class │ │ ├── EggsampleActivity$1.class │ │ ├── EggsampleActivity$2.class │ │ ├── EggsampleActivity$3.class │ │ ├── EggsampleActivity$4.class │ │ ├── EggsampleActivity$5.class │ │ ├── EggsampleActivity.class │ │ ├── ListViewAnimator$1.class │ │ ├── ListViewAnimator$10.class │ │ ├── ListViewAnimator$11.class │ │ ├── ListViewAnimator$12.class │ │ ├── ListViewAnimator$13.class │ │ ├── ListViewAnimator$2.class │ │ ├── ListViewAnimator$3.class │ │ ├── ListViewAnimator$4.class │ │ ├── ListViewAnimator$5.class │ │ ├── ListViewAnimator$6.class │ │ ├── ListViewAnimator$7.class │ │ ├── ListViewAnimator$8.class │ │ ├── ListViewAnimator$9.class │ │ ├── ListViewAnimator$Axis.class │ │ ├── ListViewAnimator$ListViewAnimatorCallbacks.class │ │ ├── ListViewAnimator.class │ │ ├── R$anim.class │ │ ├── R$attr.class │ │ ├── R$bool.class │ │ ├── R$color.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$integer.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$styleable.class │ │ ├── R.class │ │ ├── StableWrapperArrayAdapter$1.class │ │ ├── StableWrapperArrayAdapter$ImageLoaderTask.class │ │ ├── StableWrapperArrayAdapter$LoadedDrawable.class │ │ ├── StableWrapperArrayAdapter.class │ │ ├── SwipeDismissListViewTouchListener$1.class │ │ ├── SwipeDismissListViewTouchListener$2.class │ │ ├── SwipeDismissListViewTouchListener$3.class │ │ ├── SwipeDismissListViewTouchListener$4.class │ │ ├── SwipeDismissListViewTouchListener$5.class │ │ ├── SwipeDismissListViewTouchListener$6.class │ │ ├── SwipeDismissListViewTouchListener$7.class │ │ ├── SwipeDismissListViewTouchListener$DismissCallbacks.class │ │ └── SwipeDismissListViewTouchListener.class ├── dexedLibs │ ├── android-support-v4-b4c5268c5b956bdd1597c5f0653b82de.jar │ ├── android-support-v7-appcompat-1a38b72b10fdea95da24f4abd8511b10.jar │ ├── appcompat_v7-46a22a1d0035bb0e0ee4bdc1bb212b97.jar │ ├── nineoldandroids-2.4.0-6328dc3faf7867f331d270a0bcccf17f.jar │ └── swipetodismissundolist-master-c7bdecb1d679afb13e828cf9570f6637.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ ├── add.png │ │ ├── card2.9.png │ │ ├── card6.9.png │ │ ├── ic_action_undo.png │ │ ├── ic_launcher.png │ │ └── list.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── drawable │ │ ├── bad_egg.png │ │ ├── baked_egg.png │ │ ├── basted_egg.png │ │ ├── caviar.png │ │ ├── chicken_egg.png │ │ ├── coddled_egg.png │ │ ├── duck_egg.png │ │ ├── eggcellent.png │ │ ├── eggs_benedict.png │ │ ├── eggstraterrestrial.png │ │ ├── eggstravagant.png │ │ ├── emu_egg.png │ │ ├── fried_egg.png │ │ ├── good_egg.png │ │ ├── goose_egg.png │ │ ├── hard_boiled_egg.png │ │ ├── large_egg.png │ │ ├── medium_egg.png │ │ ├── omelette.png │ │ ├── ostrich_egg.png │ │ ├── pheasant_egg.png │ │ ├── pickled_egg.png │ │ ├── poached_egg.png │ │ ├── quail_egg.png │ │ ├── scotch_egg.png │ │ ├── scrambled_egg.png │ │ ├── shirred_egg.png │ │ ├── small_egg.png │ │ ├── soft_boiled_egg.png │ │ └── tea_egg.png └── resources.ap_ ├── gen ├── android │ └── support │ │ └── v7 │ │ └── appcompat │ │ └── R.java └── com │ └── witheyjr │ └── listviewanimator │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── libs ├── android-support-v4.jar └── nineoldandroids-2.4.0.jar ├── proguard-project.txt ├── project.properties ├── res ├── anim │ ├── popup_hide.xml │ └── popup_show.xml ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ ├── add.png │ ├── card2.9.png │ ├── card6.9.png │ ├── ic_action_undo.png │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── bad_egg.png │ ├── baked_egg.png │ ├── basted_egg.png │ ├── caviar.png │ ├── chicken_egg.png │ ├── coddled_egg.png │ ├── duck_egg.png │ ├── eggcellent.png │ ├── eggs_benedict.png │ ├── eggstraterrestrial.png │ ├── eggstravagant.png │ ├── emu_egg.png │ ├── fried_egg.png │ ├── good_egg.png │ ├── goose_egg.png │ ├── hard_boiled_egg.png │ ├── large_egg.png │ ├── medium_egg.png │ ├── omelette.png │ ├── ostrich_egg.png │ ├── pheasant_egg.png │ ├── pickled_egg.png │ ├── poached_egg.png │ ├── popup_bg.xml │ ├── quail_egg.png │ ├── scotch_egg.png │ ├── scrambled_egg.png │ ├── shirred_egg.png │ ├── small_egg.png │ ├── soft_boiled_egg.png │ ├── tea_egg.png │ ├── undo_btn_bg.xml │ ├── undo_btn_bg_focused.xml │ └── undo_btn_bg_pressed.xml ├── layout │ ├── activity_main.xml │ ├── eggsample_image_item.xml │ ├── eggsample_item.xml │ ├── fragment_main.xml │ └── undo_popup.xml ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── screenshot.png └── src └── com └── witheyjr └── listviewanimator ├── ContentsWrapper.java ├── EggsampleActivity.java ├── ListViewAnimator.java ├── ListViewAnimator_26_5_14.java ├── ListViewAnimator_before_clean.java ├── MainActivity.java ├── OldSwipeDismissListViewTouchListener.java ├── StableArrayAdapter.java ├── StableWrapperArrayAdapter.java └── SwipeDismissListViewTouchListener.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | ListViewAnimator 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 19 | 20 | 28 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. -------------------------------------------------------------------------------- /ListViewAnimator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/ListViewAnimator.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ListViewAnimator 2 | ================ 3 | 4 | Allows very smoothly animated and versatile addition and removal of ListView items [mostly] regardless of layout complexity, unlike traditional SwipeDismiss implementations. 5 | 6 | Works on Android 2.2 and up. 7 | 8 | ##Description 9 | 10 | This code builds on AOSP code in order to animate both the removal and addition of ListView items smoothly and easily. Only implementing the ListViewAnimator interface and small tweaks to your adapter class are necessary in order to give your ListView smooth animations, regardless of layout complexity. This code was created because in my [News Alarm][news alarm] app, the traditional methods of resizing the views after swiping (via layoutParams) was jerky and unattractive on many devices. The [DevBytes][devbytes] AOSP code showed us how to make the removal animations very smooth, but did not take into account the addition of items. 11 | 12 | - Uses an adapted form of SwipeToDismiss (Thanks [Roman Nurik][roman-swipe-to-dismiss]) 13 | - Utilises the fantastic NineOldAndroids (Thanks [Jake Wharton][nineoldandroids]) 14 | - Also includes content from SwipeToDismissUndoList (Thanks [Tim Roes][timroes]) 15 | 16 | ####[Sample apk][apk] 17 | 18 | Android app on Google Play 19 | 20 | 21 | ![screenshot][screenshot] 22 | 23 | 24 | 25 | 26 | 27 | ##Usage 28 | 29 | Please download and see the sample app code for usage instructions and example. 30 | 31 | ##License 32 | 33 | Copyright (c) 2014 J Withey 34 | 35 | Licensed under the Apache License, Version 2.0 (the "License"); 36 | you may not use this file except in compliance with the License. 37 | You may obtain a copy of the License at 38 | 39 | http://www.apache.org/licenses/LICENSE-2.0 40 | 41 | Unless required by applicable law or agreed to in writing, software 42 | distributed under the License is distributed on an "AS IS" BASIS, 43 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 44 | See the License for the specific language governing permissions and 45 | limitations under the License. 46 | Come on, don't tell me you read that. 47 | 48 | [screenshot]:https://raw.githubusercontent.com/chief-worminger/ListViewAnimator/master/screenshot.png 49 | [apk]:https://github.com/chief-worminger/ListViewAnimator/blob/master/ListViewAnimator.apk 50 | [roman-swipe-to-dismiss]:https://github.com/romannurik/Android-SwipeToDismiss 51 | [news alarm]:https://play.google.com/store/apps/details?id=com.witheyjr.newsAlarm 52 | [devbytes]:http://graphics-geek.blogspot.co.uk/2013/06/devbytes-animating-listview-deletion.html 53 | [nineoldandroids]:http://nineoldandroids.com/ 54 | [timroes]:https://github.com/timroes/SwipeToDismissUndoList 55 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 19 | 20 | 28 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /bin/ListViewAnimator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/ListViewAnimator.apk -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f040000 2 | int anim abc_fade_out 0x7f040001 3 | int anim abc_slide_in_bottom 0x7f040002 4 | int anim abc_slide_in_top 0x7f040003 5 | int anim abc_slide_out_bottom 0x7f040004 6 | int anim abc_slide_out_top 0x7f040005 7 | int anim popup_hide 0x7f040006 8 | int anim popup_show 0x7f040007 9 | int attr actionBarDivider 0x7f01000b 10 | int attr actionBarItemBackground 0x7f01000c 11 | int attr actionBarSize 0x7f01000a 12 | int attr actionBarSplitStyle 0x7f010008 13 | int attr actionBarStyle 0x7f010007 14 | int attr actionBarTabBarStyle 0x7f010004 15 | int attr actionBarTabStyle 0x7f010003 16 | int attr actionBarTabTextStyle 0x7f010005 17 | int attr actionBarWidgetTheme 0x7f010009 18 | int attr actionButtonStyle 0x7f010012 19 | int attr actionDropDownStyle 0x7f010043 20 | int attr actionLayout 0x7f01004a 21 | int attr actionMenuTextAppearance 0x7f01000d 22 | int attr actionMenuTextColor 0x7f01000e 23 | int attr actionModeBackground 0x7f010038 24 | int attr actionModeCloseButtonStyle 0x7f010037 25 | int attr actionModeCloseDrawable 0x7f01003a 26 | int attr actionModeCopyDrawable 0x7f01003c 27 | int attr actionModeCutDrawable 0x7f01003b 28 | int attr actionModeFindDrawable 0x7f010040 29 | int attr actionModePasteDrawable 0x7f01003d 30 | int attr actionModePopupWindowStyle 0x7f010042 31 | int attr actionModeSelectAllDrawable 0x7f01003e 32 | int attr actionModeShareDrawable 0x7f01003f 33 | int attr actionModeSplitBackground 0x7f010039 34 | int attr actionModeStyle 0x7f010036 35 | int attr actionModeWebSearchDrawable 0x7f010041 36 | int attr actionOverflowButtonStyle 0x7f010006 37 | int attr actionProviderClass 0x7f01004c 38 | int attr actionViewClass 0x7f01004b 39 | int attr activityChooserViewStyle 0x7f010068 40 | int attr background 0x7f01002b 41 | int attr backgroundSplit 0x7f01002d 42 | int attr backgroundStacked 0x7f01002c 43 | int attr buttonBarButtonStyle 0x7f010014 44 | int attr buttonBarStyle 0x7f010013 45 | int attr customNavigationLayout 0x7f01002e 46 | int attr disableChildrenWhenDisabled 0x7f010050 47 | int attr displayOptions 0x7f010024 48 | int attr divider 0x7f01002a 49 | int attr dividerHorizontal 0x7f010017 50 | int attr dividerPadding 0x7f010052 51 | int attr dividerVertical 0x7f010016 52 | int attr dropDownListViewStyle 0x7f01001d 53 | int attr dropdownListPreferredItemHeight 0x7f010044 54 | int attr expandActivityOverflowButtonDrawable 0x7f010067 55 | int attr height 0x7f010022 56 | int attr homeAsUpIndicator 0x7f01000f 57 | int attr homeLayout 0x7f01002f 58 | int attr icon 0x7f010028 59 | int attr iconifiedByDefault 0x7f010056 60 | int attr indeterminateProgressStyle 0x7f010031 61 | int attr initialActivityCount 0x7f010066 62 | int attr isLightTheme 0x7f010055 63 | int attr itemPadding 0x7f010033 64 | int attr listChoiceBackgroundIndicator 0x7f010048 65 | int attr listPopupWindowStyle 0x7f01001e 66 | int attr listPreferredItemHeight 0x7f010018 67 | int attr listPreferredItemHeightLarge 0x7f01001a 68 | int attr listPreferredItemHeightSmall 0x7f010019 69 | int attr listPreferredItemPaddingLeft 0x7f01001b 70 | int attr listPreferredItemPaddingRight 0x7f01001c 71 | int attr logo 0x7f010029 72 | int attr navigationMode 0x7f010023 73 | int attr paddingEnd 0x7f010035 74 | int attr paddingStart 0x7f010034 75 | int attr panelMenuListTheme 0x7f010047 76 | int attr panelMenuListWidth 0x7f010046 77 | int attr popupMenuStyle 0x7f010045 78 | int attr popupPromptView 0x7f01004f 79 | int attr progressBarPadding 0x7f010032 80 | int attr progressBarStyle 0x7f010030 81 | int attr prompt 0x7f01004d 82 | int attr queryHint 0x7f010057 83 | int attr searchDropdownBackground 0x7f010058 84 | int attr searchResultListItemHeight 0x7f010061 85 | int attr searchViewAutoCompleteTextView 0x7f010065 86 | int attr searchViewCloseIcon 0x7f010059 87 | int attr searchViewEditQuery 0x7f01005d 88 | int attr searchViewEditQueryBackground 0x7f01005e 89 | int attr searchViewGoIcon 0x7f01005a 90 | int attr searchViewSearchIcon 0x7f01005b 91 | int attr searchViewTextField 0x7f01005f 92 | int attr searchViewTextFieldRight 0x7f010060 93 | int attr searchViewVoiceIcon 0x7f01005c 94 | int attr selectableItemBackground 0x7f010015 95 | int attr showAsAction 0x7f010049 96 | int attr showDividers 0x7f010051 97 | int attr spinnerDropDownItemStyle 0x7f010054 98 | int attr spinnerMode 0x7f01004e 99 | int attr spinnerStyle 0x7f010053 100 | int attr subtitle 0x7f010025 101 | int attr subtitleTextStyle 0x7f010027 102 | int attr textAllCaps 0x7f010069 103 | int attr textAppearanceLargePopupMenu 0x7f010010 104 | int attr textAppearanceListItem 0x7f01001f 105 | int attr textAppearanceListItemSmall 0x7f010020 106 | int attr textAppearanceSearchResultSubtitle 0x7f010063 107 | int attr textAppearanceSearchResultTitle 0x7f010062 108 | int attr textAppearanceSmallPopupMenu 0x7f010011 109 | int attr textColorSearchUrl 0x7f010064 110 | int attr title 0x7f010021 111 | int attr titleTextStyle 0x7f010026 112 | int attr windowActionBar 0x7f010000 113 | int attr windowActionBarOverlay 0x7f010001 114 | int attr windowSplitActionBar 0x7f010002 115 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f060000 116 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f060001 117 | int bool abc_config_actionMenuItemAllCaps 0x7f060005 118 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004 119 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003 120 | int bool abc_split_action_bar_is_narrow 0x7f060002 121 | int color abc_search_url_text_holo 0x7f070009 122 | int color abc_search_url_text_normal 0x7f070000 123 | int color abc_search_url_text_pressed 0x7f070002 124 | int color abc_search_url_text_selected 0x7f070001 125 | int color btn_focused 0x7f070004 126 | int color btn_normal 0x7f070005 127 | int color btn_pressed 0x7f070003 128 | int color popup_bg_color 0x7f070006 129 | int color popup_text_color 0x7f070008 130 | int color separator_color 0x7f070007 131 | int dimen abc_action_bar_default_height 0x7f080002 132 | int dimen abc_action_bar_icon_vertical_padding 0x7f080003 133 | int dimen abc_action_bar_progress_bar_size 0x7f08000a 134 | int dimen abc_action_bar_stacked_max_height 0x7f080009 135 | int dimen abc_action_bar_stacked_tab_max_width 0x7f080001 136 | int dimen abc_action_bar_subtitle_bottom_margin 0x7f080007 137 | int dimen abc_action_bar_subtitle_text_size 0x7f080005 138 | int dimen abc_action_bar_subtitle_top_margin 0x7f080006 139 | int dimen abc_action_bar_title_text_size 0x7f080004 140 | int dimen abc_action_button_min_width 0x7f080008 141 | int dimen abc_config_prefDialogWidth 0x7f080000 142 | int dimen abc_dropdownitem_icon_width 0x7f080010 143 | int dimen abc_dropdownitem_text_padding_left 0x7f08000e 144 | int dimen abc_dropdownitem_text_padding_right 0x7f08000f 145 | int dimen abc_panel_menu_list_width 0x7f08000b 146 | int dimen abc_search_view_preferred_width 0x7f08000d 147 | int dimen abc_search_view_text_min_width 0x7f08000c 148 | int dimen activity_horizontal_margin 0x7f080011 149 | int dimen activity_vertical_margin 0x7f080012 150 | int drawable abc_ab_bottom_solid_dark_holo 0x7f020000 151 | int drawable abc_ab_bottom_solid_light_holo 0x7f020001 152 | int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002 153 | int drawable abc_ab_bottom_transparent_light_holo 0x7f020003 154 | int drawable abc_ab_share_pack_holo_dark 0x7f020004 155 | int drawable abc_ab_share_pack_holo_light 0x7f020005 156 | int drawable abc_ab_solid_dark_holo 0x7f020006 157 | int drawable abc_ab_solid_light_holo 0x7f020007 158 | int drawable abc_ab_stacked_solid_dark_holo 0x7f020008 159 | int drawable abc_ab_stacked_solid_light_holo 0x7f020009 160 | int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a 161 | int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b 162 | int drawable abc_ab_transparent_dark_holo 0x7f02000c 163 | int drawable abc_ab_transparent_light_holo 0x7f02000d 164 | int drawable abc_cab_background_bottom_holo_dark 0x7f02000e 165 | int drawable abc_cab_background_bottom_holo_light 0x7f02000f 166 | int drawable abc_cab_background_top_holo_dark 0x7f020010 167 | int drawable abc_cab_background_top_holo_light 0x7f020011 168 | int drawable abc_ic_ab_back_holo_dark 0x7f020012 169 | int drawable abc_ic_ab_back_holo_light 0x7f020013 170 | int drawable abc_ic_cab_done_holo_dark 0x7f020014 171 | int drawable abc_ic_cab_done_holo_light 0x7f020015 172 | int drawable abc_ic_clear 0x7f020016 173 | int drawable abc_ic_clear_disabled 0x7f020017 174 | int drawable abc_ic_clear_holo_light 0x7f020018 175 | int drawable abc_ic_clear_normal 0x7f020019 176 | int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a 177 | int drawable abc_ic_clear_search_api_holo_light 0x7f02001b 178 | int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c 179 | int drawable abc_ic_commit_search_api_holo_light 0x7f02001d 180 | int drawable abc_ic_go 0x7f02001e 181 | int drawable abc_ic_go_search_api_holo_light 0x7f02001f 182 | int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020 183 | int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021 184 | int drawable abc_ic_menu_share_holo_dark 0x7f020022 185 | int drawable abc_ic_menu_share_holo_light 0x7f020023 186 | int drawable abc_ic_search 0x7f020024 187 | int drawable abc_ic_search_api_holo_light 0x7f020025 188 | int drawable abc_ic_voice_search 0x7f020026 189 | int drawable abc_ic_voice_search_api_holo_light 0x7f020027 190 | int drawable abc_item_background_holo_dark 0x7f020028 191 | int drawable abc_item_background_holo_light 0x7f020029 192 | int drawable abc_list_divider_holo_dark 0x7f02002a 193 | int drawable abc_list_divider_holo_light 0x7f02002b 194 | int drawable abc_list_focused_holo 0x7f02002c 195 | int drawable abc_list_longpressed_holo 0x7f02002d 196 | int drawable abc_list_pressed_holo_dark 0x7f02002e 197 | int drawable abc_list_pressed_holo_light 0x7f02002f 198 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020030 199 | int drawable abc_list_selector_background_transition_holo_light 0x7f020031 200 | int drawable abc_list_selector_disabled_holo_dark 0x7f020032 201 | int drawable abc_list_selector_disabled_holo_light 0x7f020033 202 | int drawable abc_list_selector_holo_dark 0x7f020034 203 | int drawable abc_list_selector_holo_light 0x7f020035 204 | int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036 205 | int drawable abc_menu_dropdown_panel_holo_light 0x7f020037 206 | int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038 207 | int drawable abc_menu_hardkey_panel_holo_light 0x7f020039 208 | int drawable abc_search_dropdown_dark 0x7f02003a 209 | int drawable abc_search_dropdown_light 0x7f02003b 210 | int drawable abc_spinner_ab_default_holo_dark 0x7f02003c 211 | int drawable abc_spinner_ab_default_holo_light 0x7f02003d 212 | int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e 213 | int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f 214 | int drawable abc_spinner_ab_focused_holo_dark 0x7f020040 215 | int drawable abc_spinner_ab_focused_holo_light 0x7f020041 216 | int drawable abc_spinner_ab_holo_dark 0x7f020042 217 | int drawable abc_spinner_ab_holo_light 0x7f020043 218 | int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044 219 | int drawable abc_spinner_ab_pressed_holo_light 0x7f020045 220 | int drawable abc_tab_indicator_ab_holo 0x7f020046 221 | int drawable abc_tab_selected_focused_holo 0x7f020047 222 | int drawable abc_tab_selected_holo 0x7f020048 223 | int drawable abc_tab_selected_pressed_holo 0x7f020049 224 | int drawable abc_tab_unselected_pressed_holo 0x7f02004a 225 | int drawable abc_textfield_search_default_holo_dark 0x7f02004b 226 | int drawable abc_textfield_search_default_holo_light 0x7f02004c 227 | int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d 228 | int drawable abc_textfield_search_right_default_holo_light 0x7f02004e 229 | int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f 230 | int drawable abc_textfield_search_right_selected_holo_light 0x7f020050 231 | int drawable abc_textfield_search_selected_holo_dark 0x7f020051 232 | int drawable abc_textfield_search_selected_holo_light 0x7f020052 233 | int drawable abc_textfield_searchview_holo_dark 0x7f020053 234 | int drawable abc_textfield_searchview_holo_light 0x7f020054 235 | int drawable abc_textfield_searchview_right_holo_dark 0x7f020055 236 | int drawable abc_textfield_searchview_right_holo_light 0x7f020056 237 | int drawable add 0x7f020057 238 | int drawable bad_egg 0x7f020058 239 | int drawable baked_egg 0x7f020059 240 | int drawable basted_egg 0x7f02005a 241 | int drawable card2 0x7f02005b 242 | int drawable card6 0x7f02005c 243 | int drawable caviar 0x7f02005d 244 | int drawable chicken_egg 0x7f02005e 245 | int drawable coddled_egg 0x7f02005f 246 | int drawable duck_egg 0x7f020060 247 | int drawable eggcellent 0x7f020061 248 | int drawable eggs_benedict 0x7f020062 249 | int drawable eggstraterrestrial 0x7f020063 250 | int drawable eggstravagant 0x7f020064 251 | int drawable emu_egg 0x7f020065 252 | int drawable fried_egg 0x7f020066 253 | int drawable good_egg 0x7f020067 254 | int drawable goose_egg 0x7f020068 255 | int drawable hard_boiled_egg 0x7f020069 256 | int drawable ic_action_undo 0x7f02006a 257 | int drawable ic_launcher 0x7f02006b 258 | int drawable large_egg 0x7f02006c 259 | int drawable medium_egg 0x7f02006d 260 | int drawable omelette 0x7f02006e 261 | int drawable ostrich_egg 0x7f02006f 262 | int drawable pheasant_egg 0x7f020070 263 | int drawable pickled_egg 0x7f020071 264 | int drawable poached_egg 0x7f020072 265 | int drawable popup_bg 0x7f020073 266 | int drawable quail_egg 0x7f020074 267 | int drawable scotch_egg 0x7f020075 268 | int drawable scrambled_egg 0x7f020076 269 | int drawable shirred_egg 0x7f020077 270 | int drawable small_egg 0x7f020078 271 | int drawable soft_boiled_egg 0x7f020079 272 | int drawable tea_egg 0x7f02007a 273 | int drawable undo_btn_bg 0x7f02007b 274 | int drawable undo_btn_bg_focused 0x7f02007c 275 | int drawable undo_btn_bg_pressed 0x7f02007d 276 | int id action_bar 0x7f05001c 277 | int id action_bar_activity_content 0x7f050015 278 | int id action_bar_container 0x7f05001b 279 | int id action_bar_overlay_layout 0x7f05001f 280 | int id action_bar_root 0x7f05001a 281 | int id action_bar_subtitle 0x7f050023 282 | int id action_bar_title 0x7f050022 283 | int id action_context_bar 0x7f05001d 284 | int id action_menu_divider 0x7f050016 285 | int id action_menu_presenter 0x7f050017 286 | int id action_mode_close_button 0x7f050024 287 | int id activity_chooser_view_content 0x7f050025 288 | int id add 0x7f050040 289 | int id always 0x7f05000b 290 | int id beginning 0x7f050011 291 | int id checkbox 0x7f05002d 292 | int id collapseActionView 0x7f05000d 293 | int id container 0x7f05003c 294 | int id default_activity_button 0x7f050028 295 | int id dialog 0x7f05000e 296 | int id disableHome 0x7f050008 297 | int id dropdown 0x7f05000f 298 | int id edit_query 0x7f050030 299 | int id end 0x7f050013 300 | int id expand_activities_button 0x7f050026 301 | int id expanded_menu 0x7f05002c 302 | int id home 0x7f050014 303 | int id homeAsUp 0x7f050005 304 | int id icon 0x7f05002a 305 | int id ifRoom 0x7f05000a 306 | int id image 0x7f050027 307 | int id list 0x7f05003d 308 | int id listMode 0x7f050001 309 | int id list_item 0x7f050029 310 | int id middle 0x7f050012 311 | int id never 0x7f050009 312 | int id none 0x7f050010 313 | int id normal 0x7f050000 314 | int id progress_circular 0x7f050018 315 | int id progress_horizontal 0x7f050019 316 | int id radio 0x7f05002f 317 | int id search_badge 0x7f050032 318 | int id search_bar 0x7f050031 319 | int id search_button 0x7f050033 320 | int id search_close_btn 0x7f050038 321 | int id search_edit_frame 0x7f050034 322 | int id search_go_btn 0x7f05003a 323 | int id search_mag_icon 0x7f050035 324 | int id search_plate 0x7f050036 325 | int id search_src_text 0x7f050037 326 | int id search_voice_btn 0x7f05003b 327 | int id shortcut 0x7f05002e 328 | int id showCustom 0x7f050007 329 | int id showHome 0x7f050004 330 | int id showTitle 0x7f050006 331 | int id split_action_bar 0x7f05001e 332 | int id submit_area 0x7f050039 333 | int id tabMode 0x7f050002 334 | int id text 0x7f05003e 335 | int id title 0x7f05002b 336 | int id top_action_bar 0x7f050020 337 | int id undo 0x7f05003f 338 | int id up 0x7f050021 339 | int id useLogo 0x7f050003 340 | int id withText 0x7f05000c 341 | int integer abc_max_action_buttons 0x7f090000 342 | int layout abc_action_bar_decor 0x7f030000 343 | int layout abc_action_bar_decor_include 0x7f030001 344 | int layout abc_action_bar_decor_overlay 0x7f030002 345 | int layout abc_action_bar_home 0x7f030003 346 | int layout abc_action_bar_tab 0x7f030004 347 | int layout abc_action_bar_tabbar 0x7f030005 348 | int layout abc_action_bar_title_item 0x7f030006 349 | int layout abc_action_bar_view_list_nav_layout 0x7f030007 350 | int layout abc_action_menu_item_layout 0x7f030008 351 | int layout abc_action_menu_layout 0x7f030009 352 | int layout abc_action_mode_bar 0x7f03000a 353 | int layout abc_action_mode_close_item 0x7f03000b 354 | int layout abc_activity_chooser_view 0x7f03000c 355 | int layout abc_activity_chooser_view_include 0x7f03000d 356 | int layout abc_activity_chooser_view_list_item 0x7f03000e 357 | int layout abc_expanded_menu_layout 0x7f03000f 358 | int layout abc_list_menu_item_checkbox 0x7f030010 359 | int layout abc_list_menu_item_icon 0x7f030011 360 | int layout abc_list_menu_item_layout 0x7f030012 361 | int layout abc_list_menu_item_radio 0x7f030013 362 | int layout abc_popup_menu_item_layout 0x7f030014 363 | int layout abc_search_dropdown_item_icons_2line 0x7f030015 364 | int layout abc_search_view 0x7f030016 365 | int layout activity_main 0x7f030017 366 | int layout eggsample_image_item 0x7f030018 367 | int layout eggsample_item 0x7f030019 368 | int layout fragment_main 0x7f03001a 369 | int layout support_simple_spinner_dropdown_item 0x7f03001b 370 | int layout undo_popup 0x7f03001c 371 | int menu main 0x7f0c0000 372 | int string abc_action_bar_home_description 0x7f0a0001 373 | int string abc_action_bar_up_description 0x7f0a0002 374 | int string abc_action_menu_overflow_description 0x7f0a0003 375 | int string abc_action_mode_done 0x7f0a0000 376 | int string abc_activity_chooser_view_see_all 0x7f0a000a 377 | int string abc_activitychooserview_choose_application 0x7f0a0009 378 | int string abc_searchview_description_clear 0x7f0a0006 379 | int string abc_searchview_description_query 0x7f0a0005 380 | int string abc_searchview_description_search 0x7f0a0004 381 | int string abc_searchview_description_submit 0x7f0a0007 382 | int string abc_searchview_description_voice 0x7f0a0008 383 | int string abc_shareactionprovider_share_with 0x7f0a000c 384 | int string abc_shareactionprovider_share_with_application 0x7f0a000b 385 | int string action_settings 0x7f0a0010 386 | int string app_name 0x7f0a000d 387 | int string hello_world 0x7f0a000f 388 | int string image_activity 0x7f0a000e 389 | int string undo 0x7f0a0011 390 | int style AppBaseTheme 0x7f0b0083 391 | int style AppTheme 0x7f0b0084 392 | int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0063 393 | int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b006d 394 | int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b006f 395 | int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b006e 396 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0069 397 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b006a 398 | int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0070 399 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0072 400 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b0071 401 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b006b 402 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b006c 403 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0035 404 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0034 405 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0030 406 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0031 407 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0033 408 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0032 409 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b001a 410 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0006 411 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0008 412 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0005 413 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0007 414 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b001e 415 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0020 416 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001d 417 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001f 418 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b0054 419 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b0056 420 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b0058 421 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b0055 422 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0057 423 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0051 424 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0053 425 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0050 426 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0052 427 | int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0061 428 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0021 429 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b002e 430 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b002f 431 | int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0062 432 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0028 433 | int style Theme_AppCompat 0x7f0b0077 434 | int style Theme_AppCompat_Base_CompactMenu 0x7f0b0081 435 | int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b0082 436 | int style Theme_AppCompat_CompactMenu 0x7f0b007a 437 | int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b007b 438 | int style Theme_AppCompat_Light 0x7f0b0078 439 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0079 440 | int style Theme_Base 0x7f0b007c 441 | int style Theme_Base_AppCompat 0x7f0b007e 442 | int style Theme_Base_AppCompat_Light 0x7f0b007f 443 | int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0080 444 | int style Theme_Base_Light 0x7f0b007d 445 | int style Widget_AppCompat_ActionBar 0x7f0b0000 446 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 447 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0011 448 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0017 449 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b0014 450 | int style Widget_AppCompat_ActionButton 0x7f0b000b 451 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000d 452 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000f 453 | int style Widget_AppCompat_ActionMode 0x7f0b001b 454 | int style Widget_AppCompat_ActivityChooserView 0x7f0b0038 455 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0036 456 | int style Widget_AppCompat_Base_ActionBar 0x7f0b003a 457 | int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b003c 458 | int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0045 459 | int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b004b 460 | int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048 461 | int style Widget_AppCompat_Base_ActionButton 0x7f0b003f 462 | int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b0041 463 | int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b0043 464 | int style Widget_AppCompat_Base_ActionMode 0x7f0b004e 465 | int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b0075 466 | int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b0073 467 | int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b005d 468 | int style Widget_AppCompat_Base_ListPopupWindow 0x7f0b0065 469 | int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b005f 470 | int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0064 471 | int style Widget_AppCompat_Base_PopupMenu 0x7f0b0067 472 | int style Widget_AppCompat_Base_ProgressBar 0x7f0b005a 473 | int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0059 474 | int style Widget_AppCompat_Base_Spinner 0x7f0b005b 475 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0024 476 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 477 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 478 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0004 479 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0012 480 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0013 481 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0018 482 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0019 483 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0015 484 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0016 485 | int style Widget_AppCompat_Light_ActionButton 0x7f0b000c 486 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b000e 487 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0010 488 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b001c 489 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0039 490 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0037 491 | int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b003b 492 | int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b003d 493 | int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b003e 494 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0046 495 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b0047 496 | int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b004c 497 | int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b004d 498 | int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b0049 499 | int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b004a 500 | int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b0040 501 | int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0042 502 | int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0044 503 | int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b004f 504 | int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0076 505 | int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074 506 | int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b005e 507 | int style Widget_AppCompat_Light_Base_ListPopupWindow 0x7f0b0066 508 | int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0060 509 | int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0068 510 | int style Widget_AppCompat_Light_Base_Spinner 0x7f0b005c 511 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0025 512 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b002a 513 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b0027 514 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b002c 515 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0023 516 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0029 517 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0026 518 | int style Widget_AppCompat_ListView_Menu 0x7f0b002d 519 | int style Widget_AppCompat_PopupMenu 0x7f0b002b 520 | int style Widget_AppCompat_ProgressBar 0x7f0b000a 521 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0009 522 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0022 523 | int style fade_animation 0x7f0b0085 524 | int[] styleable ActionBar { 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 } 525 | int styleable ActionBar_background 10 526 | int styleable ActionBar_backgroundSplit 12 527 | int styleable ActionBar_backgroundStacked 11 528 | int styleable ActionBar_customNavigationLayout 13 529 | int styleable ActionBar_displayOptions 3 530 | int styleable ActionBar_divider 9 531 | int styleable ActionBar_height 1 532 | int styleable ActionBar_homeLayout 14 533 | int styleable ActionBar_icon 7 534 | int styleable ActionBar_indeterminateProgressStyle 16 535 | int styleable ActionBar_itemPadding 18 536 | int styleable ActionBar_logo 8 537 | int styleable ActionBar_navigationMode 2 538 | int styleable ActionBar_progressBarPadding 17 539 | int styleable ActionBar_progressBarStyle 15 540 | int styleable ActionBar_subtitle 4 541 | int styleable ActionBar_subtitleTextStyle 6 542 | int styleable ActionBar_title 0 543 | int styleable ActionBar_titleTextStyle 5 544 | int[] styleable ActionBarLayout { 0x010100b3 } 545 | int styleable ActionBarLayout_android_layout_gravity 0 546 | int[] styleable ActionBarWindow { 0x7f010000, 0x7f010001, 0x7f010002 } 547 | int styleable ActionBarWindow_windowActionBar 0 548 | int styleable ActionBarWindow_windowActionBarOverlay 1 549 | int styleable ActionBarWindow_windowSplitActionBar 2 550 | int[] styleable ActionMenuItemView { 0x0101013f } 551 | int styleable ActionMenuItemView_android_minWidth 0 552 | int[] styleable ActionMenuView { } 553 | int[] styleable ActionMode { 0x7f010022, 0x7f010026, 0x7f010027, 0x7f01002b, 0x7f01002d } 554 | int styleable ActionMode_background 3 555 | int styleable ActionMode_backgroundSplit 4 556 | int styleable ActionMode_height 0 557 | int styleable ActionMode_subtitleTextStyle 2 558 | int styleable ActionMode_titleTextStyle 1 559 | int[] styleable ActivityChooserView { 0x7f010066, 0x7f010067 } 560 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 561 | int styleable ActivityChooserView_initialActivityCount 0 562 | int[] styleable CompatTextView { 0x7f010069 } 563 | int styleable CompatTextView_textAllCaps 0 564 | int[] styleable LinearLayoutICS { 0x7f01002a, 0x7f010051, 0x7f010052 } 565 | int styleable LinearLayoutICS_divider 0 566 | int styleable LinearLayoutICS_dividerPadding 2 567 | int styleable LinearLayoutICS_showDividers 1 568 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 569 | int styleable MenuGroup_android_checkableBehavior 5 570 | int styleable MenuGroup_android_enabled 0 571 | int styleable MenuGroup_android_id 1 572 | int styleable MenuGroup_android_menuCategory 3 573 | int styleable MenuGroup_android_orderInCategory 4 574 | int styleable MenuGroup_android_visible 2 575 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c } 576 | int styleable MenuItem_actionLayout 14 577 | int styleable MenuItem_actionProviderClass 16 578 | int styleable MenuItem_actionViewClass 15 579 | int styleable MenuItem_android_alphabeticShortcut 9 580 | int styleable MenuItem_android_checkable 11 581 | int styleable MenuItem_android_checked 3 582 | int styleable MenuItem_android_enabled 1 583 | int styleable MenuItem_android_icon 0 584 | int styleable MenuItem_android_id 2 585 | int styleable MenuItem_android_menuCategory 5 586 | int styleable MenuItem_android_numericShortcut 10 587 | int styleable MenuItem_android_onClick 12 588 | int styleable MenuItem_android_orderInCategory 6 589 | int styleable MenuItem_android_title 7 590 | int styleable MenuItem_android_titleCondensed 8 591 | int styleable MenuItem_android_visible 4 592 | int styleable MenuItem_showAsAction 13 593 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 } 594 | int styleable MenuView_android_headerBackground 4 595 | int styleable MenuView_android_horizontalDivider 2 596 | int styleable MenuView_android_itemBackground 5 597 | int styleable MenuView_android_itemIconDisabledAlpha 6 598 | int styleable MenuView_android_itemTextAppearance 1 599 | int styleable MenuView_android_preserveIconSpacing 7 600 | int styleable MenuView_android_verticalDivider 3 601 | int styleable MenuView_android_windowAnimationStyle 0 602 | int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f010056, 0x7f010057 } 603 | int styleable SearchView_android_imeOptions 2 604 | int styleable SearchView_android_inputType 1 605 | int styleable SearchView_android_maxWidth 0 606 | int styleable SearchView_iconifiedByDefault 3 607 | int styleable SearchView_queryHint 4 608 | int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 } 609 | int styleable Spinner_android_dropDownHorizontalOffset 4 610 | int styleable Spinner_android_dropDownSelector 1 611 | int styleable Spinner_android_dropDownVerticalOffset 5 612 | int styleable Spinner_android_dropDownWidth 3 613 | int styleable Spinner_android_gravity 0 614 | int styleable Spinner_android_popupBackground 2 615 | int styleable Spinner_disableChildrenWhenDisabled 9 616 | int styleable Spinner_popupPromptView 8 617 | int styleable Spinner_prompt 6 618 | int styleable Spinner_spinnerMode 7 619 | int[] styleable Theme { 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048 } 620 | int styleable Theme_actionDropDownStyle 0 621 | int styleable Theme_dropdownListPreferredItemHeight 1 622 | int styleable Theme_listChoiceBackgroundIndicator 5 623 | int styleable Theme_panelMenuListTheme 4 624 | int styleable Theme_panelMenuListWidth 3 625 | int styleable Theme_popupMenuStyle 2 626 | int[] styleable View { 0x010100da, 0x7f010034, 0x7f010035 } 627 | int styleable View_android_focusable 0 628 | int styleable View_paddingEnd 2 629 | int styleable View_paddingStart 1 630 | -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ContentsWrapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ContentsWrapper.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$5.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$10.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$11.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$12.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$13.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$2.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$3.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$4.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$5.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$6.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$7.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$8.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$9.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$Axis.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$Axis.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$ListViewAnimatorCallbacks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$ListViewAnimatorCallbacks.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$anim.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$bool.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$integer.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/R.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$ImageLoaderTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$ImageLoaderTask.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$LoadedDrawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$LoadedDrawable.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$2.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$3.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$4.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$5.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$6.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$7.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$DismissCallbacks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$DismissCallbacks.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-b4c5268c5b956bdd1597c5f0653b82de.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/dexedLibs/android-support-v4-b4c5268c5b956bdd1597c5f0653b82de.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-1a38b72b10fdea95da24f4abd8511b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/dexedLibs/android-support-v7-appcompat-1a38b72b10fdea95da24f4abd8511b10.jar -------------------------------------------------------------------------------- /bin/dexedLibs/appcompat_v7-46a22a1d0035bb0e0ee4bdc1bb212b97.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/dexedLibs/appcompat_v7-46a22a1d0035bb0e0ee4bdc1bb212b97.jar -------------------------------------------------------------------------------- /bin/dexedLibs/nineoldandroids-2.4.0-6328dc3faf7867f331d270a0bcccf17f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/dexedLibs/nineoldandroids-2.4.0-6328dc3faf7867f331d270a0bcccf17f.jar -------------------------------------------------------------------------------- /bin/dexedLibs/swipetodismissundolist-master-c7bdecb1d679afb13e828cf9570f6637.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/dexedLibs/swipetodismissundolist-master-c7bdecb1d679afb13e828cf9570f6637.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1399800660724 621451 5896b0a4e377ac4242eb2bc785220c1c4fc052f4 D:\Dropbox\Java\newsAlarm_workspace\appcompat_v7\libs\android-support-v4.jar 5 | 1400957789375 621451 5896b0a4e377ac4242eb2bc785220c1c4fc052f4 D:\Dropbox\Java\newsAlarm_workspace\ListViewAnimator\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/card2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xhdpi/card2.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/card6.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xhdpi/card6.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xhdpi/ic_action_undo.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xhdpi/list.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/bad_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/bad_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/baked_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/baked_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/basted_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/basted_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/caviar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/caviar.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/chicken_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/chicken_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/coddled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/coddled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/duck_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/duck_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggcellent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/eggcellent.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggs_benedict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/eggs_benedict.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggstraterrestrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/eggstraterrestrial.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggstravagant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/eggstravagant.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/emu_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/emu_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/fried_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/fried_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/good_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/good_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/goose_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/goose_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/hard_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/hard_boiled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/large_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/large_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/medium_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/medium_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/omelette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/omelette.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/ostrich_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/ostrich_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/pheasant_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/pheasant_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/pickled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/pickled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/poached_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/poached_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/quail_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/quail_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/scotch_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/scotch_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/scrambled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/scrambled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/shirred_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/shirred_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/small_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/small_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/soft_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/soft_boiled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/tea_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/res/crunch/drawable/tea_egg.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/com/witheyjr/listviewanimator/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.witheyjr.listviewanimator; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library.reference.1=..\\appcompat_v7 16 | -------------------------------------------------------------------------------- /res/anim/popup_hide.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /res/anim/popup_show.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/card2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-xhdpi/card2.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/card6.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-xhdpi/card6.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-xhdpi/ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bad_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/bad_egg.png -------------------------------------------------------------------------------- /res/drawable/baked_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/baked_egg.png -------------------------------------------------------------------------------- /res/drawable/basted_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/basted_egg.png -------------------------------------------------------------------------------- /res/drawable/caviar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/caviar.png -------------------------------------------------------------------------------- /res/drawable/chicken_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/chicken_egg.png -------------------------------------------------------------------------------- /res/drawable/coddled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/coddled_egg.png -------------------------------------------------------------------------------- /res/drawable/duck_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/duck_egg.png -------------------------------------------------------------------------------- /res/drawable/eggcellent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/eggcellent.png -------------------------------------------------------------------------------- /res/drawable/eggs_benedict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/eggs_benedict.png -------------------------------------------------------------------------------- /res/drawable/eggstraterrestrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/eggstraterrestrial.png -------------------------------------------------------------------------------- /res/drawable/eggstravagant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/eggstravagant.png -------------------------------------------------------------------------------- /res/drawable/emu_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/emu_egg.png -------------------------------------------------------------------------------- /res/drawable/fried_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/fried_egg.png -------------------------------------------------------------------------------- /res/drawable/good_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/good_egg.png -------------------------------------------------------------------------------- /res/drawable/goose_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/goose_egg.png -------------------------------------------------------------------------------- /res/drawable/hard_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/hard_boiled_egg.png -------------------------------------------------------------------------------- /res/drawable/large_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/large_egg.png -------------------------------------------------------------------------------- /res/drawable/medium_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/medium_egg.png -------------------------------------------------------------------------------- /res/drawable/omelette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/omelette.png -------------------------------------------------------------------------------- /res/drawable/ostrich_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/ostrich_egg.png -------------------------------------------------------------------------------- /res/drawable/pheasant_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/pheasant_egg.png -------------------------------------------------------------------------------- /res/drawable/pickled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/pickled_egg.png -------------------------------------------------------------------------------- /res/drawable/poached_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/poached_egg.png -------------------------------------------------------------------------------- /res/drawable/popup_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/quail_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/quail_egg.png -------------------------------------------------------------------------------- /res/drawable/scotch_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/scotch_egg.png -------------------------------------------------------------------------------- /res/drawable/scrambled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/scrambled_egg.png -------------------------------------------------------------------------------- /res/drawable/shirred_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/shirred_egg.png -------------------------------------------------------------------------------- /res/drawable/small_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/small_egg.png -------------------------------------------------------------------------------- /res/drawable/soft_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/soft_boiled_egg.png -------------------------------------------------------------------------------- /res/drawable/tea_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/bf3b98fe9d82ba151d91c0920294d46a5f339496/res/drawable/tea_egg.png -------------------------------------------------------------------------------- /res/drawable/undo_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/undo_btn_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/undo_btn_bg_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/layout/eggsample_image_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 23 | 24 | 35 | 36 | 37 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /res/layout/eggsample_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /res/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/layout/undo_popup.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 20 | 21 | 30 | 31 |