jenkins-bot has submitted this change and it was merged. Change subject: Speed up tab animation. ......................................................................
Speed up tab animation. This changes the animation time from "medium" to "short", making it more consistent with other apps that have similar interactions. Change-Id: I4baae900daaccb3dbcccb67ef056c7fabc6feacf --- M app/src/main/res/anim/tab_list_items_enter.xml M app/src/main/res/anim/tab_list_items_exit.xml M app/src/main/res/anim/tab_list_zoom_enter.xml M app/src/main/res/anim/tab_list_zoom_exit.xml 4 files changed, 4 insertions(+), 4 deletions(-) Approvals: BearND: Looks good to me, but someone else must approve Mholloway: Looks good to me, approved Niedzielski: Looks good to me, but someone else must approve jenkins-bot: Verified diff --git a/app/src/main/res/anim/tab_list_items_enter.xml b/app/src/main/res/anim/tab_list_items_enter.xml index 5896ec8..32c8a71 100644 --- a/app/src/main/res/anim/tab_list_items_enter.xml +++ b/app/src/main/res/anim/tab_list_items_enter.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" - android:duration="@android:integer/config_mediumAnimTime"> + android:duration="@android:integer/config_shortAnimTime"> <translate android:fromYDelta="-100%" android:toYDelta="0"/> diff --git a/app/src/main/res/anim/tab_list_items_exit.xml b/app/src/main/res/anim/tab_list_items_exit.xml index 7396a5f..0e849b6 100644 --- a/app/src/main/res/anim/tab_list_items_exit.xml +++ b/app/src/main/res/anim/tab_list_items_exit.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" - android:duration="@android:integer/config_mediumAnimTime"> + android:duration="@android:integer/config_shortAnimTime"> <translate android:fromYDelta="0" android:toYDelta="-100%"/> diff --git a/app/src/main/res/anim/tab_list_zoom_enter.xml b/app/src/main/res/anim/tab_list_zoom_enter.xml index 49e7a4b..b4f2231 100644 --- a/app/src/main/res/anim/tab_list_zoom_enter.xml +++ b/app/src/main/res/anim/tab_list_zoom_enter.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" - android:duration="@android:integer/config_mediumAnimTime"> + android:duration="@android:integer/config_shortAnimTime"> <translate android:fromYDelta="0" android:toYDelta="40%"/> diff --git a/app/src/main/res/anim/tab_list_zoom_exit.xml b/app/src/main/res/anim/tab_list_zoom_exit.xml index ac8fe05..5c135b5 100644 --- a/app/src/main/res/anim/tab_list_zoom_exit.xml +++ b/app/src/main/res/anim/tab_list_zoom_exit.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" - android:duration="@android:integer/config_mediumAnimTime"> + android:duration="@android:integer/config_shortAnimTime"> <translate android:fromYDelta="40%" android:toYDelta="0%"/> -- To view, visit https://gerrit.wikimedia.org/r/231584 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I4baae900daaccb3dbcccb67ef056c7fabc6feacf Gerrit-PatchSet: 1 Gerrit-Project: apps/android/wikipedia Gerrit-Branch: master Gerrit-Owner: Dbrant <[email protected]> Gerrit-Reviewer: BearND <[email protected]> Gerrit-Reviewer: Brion VIBBER <[email protected]> Gerrit-Reviewer: Mholloway <[email protected]> Gerrit-Reviewer: Niedzielski <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
