Rx.Widgets v1.1.0 Release Notes
Release Date: 2016-11-19 // over 6 years ago-
โ Additions
- โ Adding
ListViewCard
and related layouts.
๐ Fixes
- Replaced our
List<Subscription>
with aCompositeSubscription
. It does essentially the same thing, but means there's one less thing to worry about managing. - ๐ Moved layout initialization into
onCreate()
in the example. Originally it was inonResume()
. If you don't do this too you'll get duplicated views and potentially crash. A better, longer term fix is forthcoming.
๐ฅ Breaking Changes
- All layout attributes have been prefixed with
rxw_
to avoid conflicts in consuming projects. So, for example,app:itemsPerRow
becomesapp:rxw_itemsPerRow
. - ๐ Renamed method
setmData()
tosetData()
inExpandableButtonGroup
.
- โ Adding
Previous changes from v1.0.1
-
๐ This release tries to make observing and subscribing more efficient.
๐ฅ Breaking Changes
- ExpandableButtonGroup now returns a single
itemClicks
observable. There's no need to have individual subscriptions to each item clicked. YourAction
should remain the same.
- ExpandableButtonGroup now returns a single