-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use object animator for non v4 support activity
- Loading branch information
Vignesh
committed
Aug 9, 2015
1 parent
91c9f34
commit a6734a3
Showing
4 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
confirmdialog/src/main/res/anim/objanim_slide_from_bottom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<objectAnimator | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:propertyName="y" | ||
android:valueFrom="1000" | ||
android:valueTo="0" | ||
android:valueType="floatType"/> | ||
</set> |
10 changes: 10 additions & 0 deletions
10
confirmdialog/src/main/res/anim/objanim_slide_to_bottom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<objectAnimator | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="300" | ||
android:propertyName="y" | ||
android:valueFrom="1" | ||
android:valueTo="1000" | ||
android:valueType="floatType"/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters