├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/LICENSE -------------------------------------------------------------------------------- /ListViewAnimator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/ListViewAnimator.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/README.md -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/ListViewAnimator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/ListViewAnimator.apk -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/R.txt -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ContentsWrapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ContentsWrapper.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity$5.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/EggsampleActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/EggsampleActivity.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$10.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$11.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$12.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$13.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$2.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$3.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$4.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$5.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$6.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$7.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$8.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$9.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$Axis.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$Axis.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$ListViewAnimatorCallbacks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator$ListViewAnimatorCallbacks.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/ListViewAnimator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/ListViewAnimator.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$anim.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$bool.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$integer.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/R.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$ImageLoaderTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$ImageLoaderTask.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$LoadedDrawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter$LoadedDrawable.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/StableWrapperArrayAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$1.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$2.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$3.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$4.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$5.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$6.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$7.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$DismissCallbacks.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener$DismissCallbacks.class -------------------------------------------------------------------------------- /bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/classes/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-b4c5268c5b956bdd1597c5f0653b82de.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/dexedLibs/android-support-v4-b4c5268c5b956bdd1597c5f0653b82de.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-1a38b72b10fdea95da24f4abd8511b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/dexedLibs/android-support-v7-appcompat-1a38b72b10fdea95da24f4abd8511b10.jar -------------------------------------------------------------------------------- /bin/dexedLibs/appcompat_v7-46a22a1d0035bb0e0ee4bdc1bb212b97.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/dexedLibs/appcompat_v7-46a22a1d0035bb0e0ee4bdc1bb212b97.jar -------------------------------------------------------------------------------- /bin/dexedLibs/nineoldandroids-2.4.0-6328dc3faf7867f331d270a0bcccf17f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/dexedLibs/nineoldandroids-2.4.0-6328dc3faf7867f331d270a0bcccf17f.jar -------------------------------------------------------------------------------- /bin/dexedLibs/swipetodismissundolist-master-c7bdecb1d679afb13e828cf9570f6637.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/dexedLibs/swipetodismissundolist-master-c7bdecb1d679afb13e828cf9570f6637.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/jarlist.cache -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/card2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xhdpi/card2.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/card6.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xhdpi/card6.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xhdpi/ic_action_undo.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xhdpi/list.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/bad_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/bad_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/baked_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/baked_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/basted_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/basted_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/caviar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/caviar.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/chicken_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/chicken_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/coddled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/coddled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/duck_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/duck_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggcellent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/eggcellent.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggs_benedict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/eggs_benedict.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggstraterrestrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/eggstraterrestrial.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/eggstravagant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/eggstravagant.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/emu_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/emu_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/fried_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/fried_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/good_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/good_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/goose_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/goose_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/hard_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/hard_boiled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/large_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/large_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/medium_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/medium_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/omelette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/omelette.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/ostrich_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/ostrich_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/pheasant_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/pheasant_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/pickled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/pickled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/poached_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/poached_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/quail_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/quail_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/scotch_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/scotch_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/scrambled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/scrambled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/shirred_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/shirred_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/small_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/small_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/soft_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/soft_boiled_egg.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/tea_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/res/crunch/drawable/tea_egg.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/gen/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /gen/com/witheyjr/listviewanimator/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/gen/com/witheyjr/listviewanimator/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/witheyjr/listviewanimator/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/gen/com/witheyjr/listviewanimator/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/project.properties -------------------------------------------------------------------------------- /res/anim/popup_hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/anim/popup_hide.xml -------------------------------------------------------------------------------- /res/anim/popup_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/anim/popup_show.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/card2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-xhdpi/card2.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/card6.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-xhdpi/card6.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-xhdpi/ic_action_undo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bad_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/bad_egg.png -------------------------------------------------------------------------------- /res/drawable/baked_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/baked_egg.png -------------------------------------------------------------------------------- /res/drawable/basted_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/basted_egg.png -------------------------------------------------------------------------------- /res/drawable/caviar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/caviar.png -------------------------------------------------------------------------------- /res/drawable/chicken_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/chicken_egg.png -------------------------------------------------------------------------------- /res/drawable/coddled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/coddled_egg.png -------------------------------------------------------------------------------- /res/drawable/duck_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/duck_egg.png -------------------------------------------------------------------------------- /res/drawable/eggcellent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/eggcellent.png -------------------------------------------------------------------------------- /res/drawable/eggs_benedict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/eggs_benedict.png -------------------------------------------------------------------------------- /res/drawable/eggstraterrestrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/eggstraterrestrial.png -------------------------------------------------------------------------------- /res/drawable/eggstravagant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/eggstravagant.png -------------------------------------------------------------------------------- /res/drawable/emu_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/emu_egg.png -------------------------------------------------------------------------------- /res/drawable/fried_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/fried_egg.png -------------------------------------------------------------------------------- /res/drawable/good_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/good_egg.png -------------------------------------------------------------------------------- /res/drawable/goose_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/goose_egg.png -------------------------------------------------------------------------------- /res/drawable/hard_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/hard_boiled_egg.png -------------------------------------------------------------------------------- /res/drawable/large_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/large_egg.png -------------------------------------------------------------------------------- /res/drawable/medium_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/medium_egg.png -------------------------------------------------------------------------------- /res/drawable/omelette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/omelette.png -------------------------------------------------------------------------------- /res/drawable/ostrich_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/ostrich_egg.png -------------------------------------------------------------------------------- /res/drawable/pheasant_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/pheasant_egg.png -------------------------------------------------------------------------------- /res/drawable/pickled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/pickled_egg.png -------------------------------------------------------------------------------- /res/drawable/poached_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/poached_egg.png -------------------------------------------------------------------------------- /res/drawable/popup_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/popup_bg.xml -------------------------------------------------------------------------------- /res/drawable/quail_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/quail_egg.png -------------------------------------------------------------------------------- /res/drawable/scotch_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/scotch_egg.png -------------------------------------------------------------------------------- /res/drawable/scrambled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/scrambled_egg.png -------------------------------------------------------------------------------- /res/drawable/shirred_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/shirred_egg.png -------------------------------------------------------------------------------- /res/drawable/small_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/small_egg.png -------------------------------------------------------------------------------- /res/drawable/soft_boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/soft_boiled_egg.png -------------------------------------------------------------------------------- /res/drawable/tea_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/tea_egg.png -------------------------------------------------------------------------------- /res/drawable/undo_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/undo_btn_bg.xml -------------------------------------------------------------------------------- /res/drawable/undo_btn_bg_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/undo_btn_bg_focused.xml -------------------------------------------------------------------------------- /res/drawable/undo_btn_bg_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/drawable/undo_btn_bg_pressed.xml -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/eggsample_image_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/layout/eggsample_image_item.xml -------------------------------------------------------------------------------- /res/layout/eggsample_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/layout/eggsample_item.xml -------------------------------------------------------------------------------- /res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /res/layout/undo_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/layout/undo_popup.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/ContentsWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/ContentsWrapper.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/EggsampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/EggsampleActivity.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/ListViewAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/ListViewAnimator.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/ListViewAnimator_26_5_14.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/ListViewAnimator_26_5_14.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/ListViewAnimator_before_clean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/ListViewAnimator_before_clean.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/MainActivity.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/OldSwipeDismissListViewTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/OldSwipeDismissListViewTouchListener.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/StableArrayAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/StableArrayAdapter.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/StableWrapperArrayAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/StableWrapperArrayAdapter.java -------------------------------------------------------------------------------- /src/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witheyjr/ListViewAnimator/HEAD/src/com/witheyjr/listviewanimator/SwipeDismissListViewTouchListener.java --------------------------------------------------------------------------------