Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (21 loc) · 1.37 KB

CHANGELOG.md

File metadata and controls

28 lines (21 loc) · 1.37 KB

1.2.0

Features
  • Add chips to the layout live preview.
  • Add custom chips margin: app:cv_chips_margin="${dimension}".
  • Add custom TypeFace: .setTypeface(...).
  • There is no Email dialog anymore. Show your own dialog when onInputNotRecognized gets called.
  • Add option to use initials instead of the default person icon: useInitials(...).
  • The placeholder has no alpha anymore.

1.1.0

Features
  • Added attribute app:cv_max_height="${dimension}" to make the ChipView's content scrollable beyond this limit (fixes #8)
  • Added attribute app:cv_vertical_spacing="${dimension}" to allow configurable spacing between rows (fixes #4)
Misc
  • Added getChips() (fixes #6)
  • Added getEditText(), e.g. to allow the ChipsView to be made non-editable (fixes #2)
  • Improved the cursor's alignment to be centered towards the Chips in its row
  • Improved the sample application
Upgrade Notes

As the ChipsView itself is now a ScrollView you may want to remove any ScrollView that you already used to wrap the ChipView's content and use app:cv_max_height instead.