Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davideas committed Mar 7, 2017
1 parent eae69aa commit 7fe0ba9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 33 deletions.
37 changes: 12 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[![Download](https://api.bintray.com/packages/davideas/maven/flipview/images/download.svg) ](https://bintray.com/davideas/maven/flipview/_latestVersion)
[![API](https://img.shields.io/badge/API-14%2B-green.svg?style=flat)](https://android-arsenal.com/api?level=14)
[![Licence](https://img.shields.io/badge/Licence-Apache2-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
[![Methods and Size](https://img.shields.io/badge/Methods%20and%20Size-core:%20190%20%7C%2034%20KB-e91e63.svg)](http://www.methodscount.com/?lib=eu.davidea%3Aflipview%3A1.1.3)

# FlipView

###### GMail-like View & beyond - v1.1.2 built on 2016.11.30 (34KB)
###### GMail-like View & beyond - v1.1.3 built on 2017.03.07

#### Concept
FlipView is a ViewGroup (FrameLayout) that is designed to display 2 views/layouts by flipping
Expand All @@ -18,7 +19,7 @@ Please, refer to those attributes documentation for more details.
Not less, FlipView extends `android.widget.ViewFlipper` that extends `android.widget.ViewAnimator`,
which means you can call all public functions of these two Android views.

#### Main functionalities
#### Main features
- Visible during design time ;-)
- Custom In/Out animation + entry animation + rear ImageView animation
- Custom layout, ImageView & TextView for front layout.
Expand All @@ -34,16 +35,7 @@ which means you can call all public functions of these two Android views.
Import the library into your project using JCenter
```
dependencies {
compile 'eu.davidea:flipview:1.1.2'
}
```
Using bintray.com
```
repositories {
maven { url "http://dl.bintray.com/davideas/maven" }
}
dependencies {
compile 'eu.davidea:flipview:1.1.2@aar'
compile 'eu.davidea:flipview:1.1.3'
}
```
#### Pull requests / Issues / Improvement requests
Expand Down Expand Up @@ -91,7 +83,7 @@ Supported attributes with _default_ values:
| `app:animateRearImage="true"` | Whether or not the rear image should animate.
| `app:rearImageAnimation="@anim/scale_up"` | Rear image animation.
| `app:rearImageAnimationDuration="150"` | Rear image animation duration.
| `app:rearImageAnimationDelay="animationDuration"` | Rear image animation delay (depends the animation/duration it can be smart setting a specific delay. For Gmail effect set this to 0).
| `app:rearImageAnimationDelay="animationDuration"` | Rear image animation delay (depends the animation/duration it can be smart setting a specific delay. For GMail effect set this to 0).

|**Non changeable values** (in ms)||
|:---|:---|
Expand All @@ -104,23 +96,18 @@ Supported attributes with _default_ values:
- Using layer type _software_ on the entire layout it removes the shadow/elevation.
- Stroke and background color on custom Drawable should be preset by the user: too complex to determine the type of the Drawable used in order to change its color.

# Change Log
###### [v1.1.2](https://github.com/davideas/FlipView/releases/tag/1.1.2) - 2016.11.30
- Fixed #7: don't flip if the target child is the one currently displayed
- Reviewed comments for javaDoc
- Upgraded project and demoApp for API 25

###### [v1.1.1](https://github.com/davideas/FlipView/releases/tag/1.1.1) - 2016.04.07
- Added support to enable/disable flipping programmatically. Overridden `setClickable()` and `setEnabled()` [See #8].
- Adapted demoApp to show how to make clickable/enabled/disabled the view.
###### Latest release
[v1.1.3](https://github.com/davideas/FlipView/releases) - 2017.03.07

###### Old releases
[v1.0.0](https://github.com/davideas/FlipView/releases/tag/1.0.0) - 2015.11.01 |
[v1.1.0](https://github.com/davideas/FlipView/releases/tag/1.1.0) - 2015.11.05
[v1.1.2](https://github.com/davideas/FlipView/releases/tag/1.1.2) - 2016.11.30 |
[v1.1.1](https://github.com/davideas/FlipView/releases/tag/1.1.1) - 2016.04.07<br/>
[v1.1.0](https://github.com/davideas/FlipView/releases/tag/1.1.0) - 2015.11.05 |
[v1.0.0](https://github.com/davideas/FlipView/releases/tag/1.0.0) - 2015.11.01

# License

Copyright 2015-2016 Davide Steduto
Copyright 2015-2017 Davide Steduto

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ ext {
developerEmail = 'dave.dna@gmail.com'

// Library
libraryCode = 4
libraryVersion = '1.1.2'
libraryDate = " of 2016.11.30"
libraryCode = 5
libraryVersion = '1.1.3'
libraryDate = " of 2017.03.07"
libraryName = 'FlipView'
libraryDescription = 'Flipping views like GMail & beyond'

Expand All @@ -23,8 +23,8 @@ ext {
// Support and Build tools version
minSdk = 14
targetSdk = 25
buildTools = "25.0.1"
supportLibrary = '25.0.1'
buildTools = "25.0.2"
supportLibrary = '25.2.0'

// Support Libraries dependencies
supportDependencies = [
Expand All @@ -47,7 +47,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Oct 28 22:05:45 CEST 2016
#Tue Mar 07 20:51:57 CET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 comments on commit 7fe0ba9

Please sign in to comment.