aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-07-25 14:24:54 -0700
committerAllan Wang <me@allanwang.ca>2017-07-25 14:24:54 -0700
commitab2036fd964565ffb3e13e2a4f4d2838dde7fba2 (patch)
treeab8f304c87b42cf5feedf72eacaaf035dc9e15ca
parent3a1561bbc9b6aab98370a4b51ef07ed05a92daa9 (diff)
downloadkau-ab2036fd964565ffb3e13e2a4f4d2838dde7fba2.tar.gz
kau-ab2036fd964565ffb3e13e2a4f4d2838dde7fba2.tar.bz2
kau-ab2036fd964565ffb3e13e2a4f4d2838dde7fba2.zip
Clear searchview animator
-rw-r--r--docs/Changelog.md4
-rw-r--r--sample/src/main/res/xml/kau_changelog.xml6
-rw-r--r--searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt2
3 files changed, 9 insertions, 3 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md
index accaa0c..0f3a8e5 100644
--- a/docs/Changelog.md
+++ b/docs/Changelog.md
@@ -4,6 +4,10 @@
* :imagepicker: Add uri val to ImageModel
* :imagepicker: Create bindings and overlay activity
* Add showcase app to play store
+* Update dependencies
+* Update build tools to 26.0.1
+* :adapter: Make KauAnimator extensible
+* :imagepicker: Create single image picker counterpart with overlay
## v3.1.0
* :core: Allow for nullable throwables when logging
diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml
index 7ed2073..14f6c2c 100644
--- a/sample/src/main/res/xml/kau_changelog.xml
+++ b/sample/src/main/res/xml/kau_changelog.xml
@@ -10,8 +10,10 @@
<item text=":imagepicker: Add uri val to ImageModel" />
<item text=":imagepicker: Create bindings and overlay activity" />
<item text="Add showcase app to play store" />
- <item text="" />
- <item text="" />
+ <item text="Update dependencies" />
+ <item text="Update build tools to 26.0.1" />
+ <item text=":adapter: Make KauAnimator extensible" />
+ <item text=":imagepicker: Create single image picker counterpart with overlay" />
<item text="" />
<item text="" />
diff --git a/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt b/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt
index 0399883..30e224e 100644
--- a/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt
+++ b/searchview/src/main/kotlin/ca/allanwang/kau/searchview/SearchView.kt
@@ -246,7 +246,7 @@ class SearchView @JvmOverloads constructor(
}
})
adapter = this@SearchView.adapter
- itemAnimator = NoAnimator()
+ itemAnimator = null
}
with(adapter) {
withSelectable(true)