Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Animation Fix #14

Merged
merged 3 commits into from
Aug 30, 2014
Merged

Commits on Aug 14, 2014

  1. Removed files that do not need to be versioned.

    - Removed IDE bin and gen folders.
    - Removed IntelliJ IML files.
    - Etc.
    NathanRussakAtBrickSimple committed Aug 14, 2014
    Configuration menu
    Copy the full SHA
    b659992 View commit details
    Browse the repository at this point in the history
  2. Moved sdk versions to build.grade

    Moved properties like the compile SDK version, build tools version,
    mind SDK version, etc to the build.gradle file that way it can be
    imported into any Android Studio project without the need for the
    parent gradle.properties file.
    NathanRussakAtBrickSimple committed Aug 14, 2014
    Configuration menu
    Copy the full SHA
    681ab71 View commit details
    Browse the repository at this point in the history
  3. Addressed a show/hide animation bug.

    The original code base contained a bug where if the user quickly swiped
    up and down repeatedly on the AbsListView that a FAB was listening to,
    the FAB would lose track of it’s original Y position and would slowly
    scroll off screen never to be seen again. This fix has the FAB make a
    note of it’s displayed Y position after it is assigned in onLayout()
    and use it when animating instead of it’s current Y position.
    NathanRussakAtBrickSimple committed Aug 14, 2014
    Configuration menu
    Copy the full SHA
    43f23b8 View commit details
    Browse the repository at this point in the history