Releases: DanielMartinus/Stepper-Touch
1.0.1
The following issue is fixed:
New dimensions
Two new dimensions are added to set the margins of the negative and positive textview. You can override these values by putting them in the dimens.xml of your app.
<dimen name="stepper_side_control_margin_start">8dp</dimen>
<dimen name="stepper_side_control_margin_end">8dp</dimen>
[1.0] Major release
Property to (dis)allow positive and negative stepper
Thanks to the contribution of @imaNNeoFighT there are now two new properties available:
app:app:stepperAllowNegative=""
app:app:stepperAllowPositive=""
This allows you to hide and disable either side of the stepper.
Migration to androidx
Migrated the library to androidx due to this issue: #24
Projects that didn't migrate yet can only use version 0.6
or lower and won't receive any updates anymore.
0.6 Increase or decrease by tapping
Increase or decrease the number when tapping on one of the sides
Pull request: #6
Enable the feature by calling:
stepperTouch.enableSideTap(true)
Fix interception of touch events by parent views
Stepper touch had problems with interactions when it was implemented within a viewgroup such as a ScrollView as reported in #8 . This release contains a hot-fix disallowing the parent view to intercept touch events while interacting with the Stepper Touch widget.
0.4 bug fix
Bug fix using dynamic size changes. See #5 for more detailed information.