View UIActivity.java
package com.materialdesign.chris.materialdesignexperimenting; | |
import android.animation.Animator; | |
import android.animation.AnimatorListenerAdapter; | |
import android.animation.ObjectAnimator; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.os.Handler; | |
import android.view.View; | |
import android.view.ViewAnimationUtils; |
View CubicBezierInterpolator.java
import android.graphics.PointF; | |
import android.view.animation.Interpolator; | |
/** | |
* From https://github.com/codesoup/android-cubic-bezier-interpolator | |
* Derived from: https://github.com/rdallasgray/bez | |
*/ | |
public class CubicBezierInterpolator implements Interpolator { |
View build.gradle
dependencies { | |
compile 'com.android.support:appcompat-v7:21.+' | |
compile 'com.wrapp.floatlabelededittext:library:0.0.5' | |
} |