Skip to content

Releases: Stjin/ExpandableCardView

1.2.0-beta02

07 Feb 18:25
Compare
Choose a tag to compare

Fixed daynight color for arrow icon (issue AleSpero/ExpandableCardView#49)

1.2.0-beta01

06 Feb 20:03
Compare
Choose a tag to compare

Cleaned code a bit
Attempt to fix: AleSpero/ExpandableCardView#9 with a new attribute (for now)

This is a beta

This is a beta, introducing app:fullHeight as a workaround for the Innerview issue
I hope to fix this in the future and might remove this attribute

1.1.4

03 Feb 18:11
Compare
Choose a tag to compare

Fixed issue with title overlapping switch/button

1.1.3

03 Feb 17:22
Compare
Choose a tag to compare

added setSwitch(boolean) method

1.1.2

02 Feb 11:10
Compare
Choose a tag to compare
  • Changed margin of cardttitle to 16dp

Switches are here! And they are super cool!

02 Feb 10:42
Compare
Choose a tag to compare

Switches are here! And they are super cool!

use app:showSwitch="true" to show a Materialswitch when a card is collapsed.
You can listen to the state of the switch with

card.setOnSwitchChangeListener { view, isChecked ->
    Toast.makeText(applicationContext, if(isChecked) "Checked!" else "Not checked!", Toast.LENGTH_SHORT).show()
 }

Added more styling for titles

app:expandableCardTitleColor="@color/colorAccent"
app:expandableCardTitleBold="true"
app:expandableCardTitleSize="30"

1.1

02 Feb 10:12
Compare
Choose a tag to compare
1.1
- Added new switches

1.0! With more styling and Material components

01 Feb 10:36
Compare
Choose a tag to compare
  • Added styling for:
        - Elevation
        - Arrow color
        - Radius
        - Stroke width/color
        - Enable/Disable ripple

  • Using MaterialCardView

  • Updated libs

  • Cleaned a bit