DT @8.11.2015: Delete report function implemented. Some design changes. Fadein and out animation added.
This commit is contained in:
9
app/src/main/res/anim/fade_in_anim.xml
Normal file
9
app/src/main/res/anim/fade_in_anim.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<alpha
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:duration="300"
|
||||
android:repeatCount="0" />
|
||||
</set>
|
||||
9
app/src/main/res/anim/fade_out_anim.xml
Normal file
9
app/src/main/res/anim/fade_out_anim.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<alpha
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:duration="300"
|
||||
android:repeatCount="0" />
|
||||
</set>
|
||||
Reference in New Issue
Block a user