diff options
Diffstat (limited to 'core-ui')
-rw-r--r-- | core-ui/README.md | 8 | ||||
-rw-r--r-- | core-ui/src/main/res/layout/kau_recycler_textslider.xml | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/core-ui/README.md b/core-ui/README.md index 8abf05e..3c6e0ab 100644 --- a/core-ui/README.md +++ b/core-ui/README.md @@ -12,18 +12,26 @@ One example is in KAU's `:searchview`, where the search results will always allo ## CutoutView +> Courtesy of Plaid + Given a background and a text/vector, will "erase" the text/vector from the background. This can be seen in effect in KAU's `:about` submodule. ## ElasticDragDismissFrameLayout +> Courtesy of Plaid + When scrolling vertically, this frame will allow for overscrolling and will pull the layout out of view and exit if a threshold is reached. Note that Activities with this frame must be translucent. `@style/Kau.Translucent` can be used as a base. ## InkPageIndicator +> Courtesy of Plaid + A beautiful viewpager indicator +![Ink Indicator Gif](https://raw.githubusercontent.com/AllanWang/Storage-Hub/master/kau/kau_ink_indicator.gif) + ## TextSlider An animated and themable Text Switcher. Specify its direction and set a new text value and it will slide it into view.
\ No newline at end of file diff --git a/core-ui/src/main/res/layout/kau_recycler_textslider.xml b/core-ui/src/main/res/layout/kau_recycler_textslider.xml index 1402cfb..eacd5be 100644 --- a/core-ui/src/main/res/layout/kau_recycler_textslider.xml +++ b/core-ui/src/main/res/layout/kau_recycler_textslider.xml @@ -13,7 +13,7 @@ app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> - <ca.allanwang.kau.widgets.TextSlider + <ca.allanwang.kau.ui.widgets.TextSlider android:id="@+id/kau_toolbar_text" android:layout_width="wrap_content" android:layout_height="wrap_content" |