diff options
author | 2023-08-23 18:58:59 +0000 | |
---|---|---|
committer | 2023-08-23 18:58:59 +0000 | |
commit | 9c4b60e8696fc3744d0b50fc1bdaad6166d1211e (patch) | |
tree | 1562036ee3c4bd26a0d14d883167f2c25b8cd066 | |
parent | 6a0b7b027563512e13ee79e9bea687c3b8893c06 (diff) | |
parent | 010805eefa2c19c32d9d6c9debd96388e458e128 (diff) |
Merge "Update default activity animation" into udc-qpr-dev am: 010805eefa
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/24526387
Change-Id: I61b11bbb45c3a64b4de86263a5d016d2a56e12d4
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r-- | core/res/res/anim-ldrtl/activity_close_enter.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim-ldrtl/activity_close_exit.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim-ldrtl/activity_open_enter.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim-ldrtl/activity_open_exit.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim-ldrtl/task_fragment_close_exit.xml | 2 | ||||
-rw-r--r-- | core/res/res/anim/activity_close_enter.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim/activity_close_exit.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim/activity_open_enter.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim/activity_open_exit.xml | 6 | ||||
-rw-r--r-- | core/res/res/anim/task_fragment_close_exit.xml | 2 | ||||
-rw-r--r-- | core/res/res/anim/task_fragment_open_enter.xml | 2 |
11 files changed, 27 insertions, 27 deletions
diff --git a/core/res/res/anim-ldrtl/activity_close_enter.xml b/core/res/res/anim-ldrtl/activity_close_enter.xml index 6a699e7fcdfa..0b4864600b58 100644 --- a/core/res/res/anim-ldrtl/activity_close_enter.xml +++ b/core/res/res/anim-ldrtl/activity_close_enter.xml @@ -31,7 +31,7 @@ android:duration="450" /> <translate - android:fromXDelta="10%" + android:fromXDelta="96dp" android:toXDelta="0" android:fillEnabled="true" android:fillBefore="true" @@ -41,11 +41,11 @@ android:duration="450" /> <extend - android:fromExtendLeft="10%" + android:fromExtendLeft="96dp" android:fromExtendTop="0" android:fromExtendRight="0" android:fromExtendBottom="0" - android:toExtendLeft="10%" + android:toExtendLeft="96dp" android:toExtendTop="0" android:toExtendRight="0" android:toExtendBottom="0" diff --git a/core/res/res/anim-ldrtl/activity_close_exit.xml b/core/res/res/anim-ldrtl/activity_close_exit.xml index 06a0d6916f61..5277b9fe9947 100644 --- a/core/res/res/anim-ldrtl/activity_close_exit.xml +++ b/core/res/res/anim-ldrtl/activity_close_exit.xml @@ -32,7 +32,7 @@ <translate android:fromXDelta="0" - android:toXDelta="-10%" + android:toXDelta="-96dp" android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true" @@ -43,11 +43,11 @@ <extend android:fromExtendLeft="0" android:fromExtendTop="0" - android:fromExtendRight="10%" + android:fromExtendRight="96dp" android:fromExtendBottom="0" android:toExtendLeft="0" android:toExtendTop="0" - android:toExtendRight="10%" + android:toExtendRight="96dp" android:toExtendBottom="0" android:interpolator="@interpolator/fast_out_extra_slow_in" android:startOffset="0" diff --git a/core/res/res/anim-ldrtl/activity_open_enter.xml b/core/res/res/anim-ldrtl/activity_open_enter.xml index 7b1829466884..97d2cf9b959f 100644 --- a/core/res/res/anim-ldrtl/activity_open_enter.xml +++ b/core/res/res/anim-ldrtl/activity_open_enter.xml @@ -30,7 +30,7 @@ android:duration="83" /> <translate - android:fromXDelta="-10%" + android:fromXDelta="-96dp" android:toXDelta="0" android:fillEnabled="true" android:fillBefore="true" @@ -41,11 +41,11 @@ <extend android:fromExtendLeft="0" android:fromExtendTop="0" - android:fromExtendRight="10%" + android:fromExtendRight="96dp" android:fromExtendBottom="0" android:toExtendLeft="0" android:toExtendTop="0" - android:toExtendRight="10%" + android:toExtendRight="96dp" android:toExtendBottom="0" android:interpolator="@interpolator/fast_out_extra_slow_in" android:startOffset="0" diff --git a/core/res/res/anim-ldrtl/activity_open_exit.xml b/core/res/res/anim-ldrtl/activity_open_exit.xml index c29509ef1b2a..2159029b784e 100644 --- a/core/res/res/anim-ldrtl/activity_open_exit.xml +++ b/core/res/res/anim-ldrtl/activity_open_exit.xml @@ -31,7 +31,7 @@ <translate android:fromXDelta="0" - android:toXDelta="10%" + android:toXDelta="96dp" android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true" @@ -40,11 +40,11 @@ android:duration="450" /> <extend - android:fromExtendLeft="10%" + android:fromExtendLeft="9dp" android:fromExtendTop="0" android:fromExtendRight="0" android:fromExtendBottom="0" - android:toExtendLeft="10%" + android:toExtendLeft="96dp" android:toExtendTop="0" android:toExtendRight="0" android:toExtendBottom="0" diff --git a/core/res/res/anim-ldrtl/task_fragment_close_exit.xml b/core/res/res/anim-ldrtl/task_fragment_close_exit.xml index c5a36542cc7d..58fcb1f8fb79 100644 --- a/core/res/res/anim-ldrtl/task_fragment_close_exit.xml +++ b/core/res/res/anim-ldrtl/task_fragment_close_exit.xml @@ -30,7 +30,7 @@ <translate android:fromXDelta="0" - android:toXDelta="-10%" + android:toXDelta="-96dp" android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true" diff --git a/core/res/res/anim/activity_close_enter.xml b/core/res/res/anim/activity_close_enter.xml index 0fefb5113dfc..22a1dd691b8f 100644 --- a/core/res/res/anim/activity_close_enter.xml +++ b/core/res/res/anim/activity_close_enter.xml @@ -31,7 +31,7 @@ android:duration="450" /> <translate - android:fromXDelta="-10%" + android:fromXDelta="-96dp" android:toXDelta="0" android:fillEnabled="true" android:fillBefore="true" @@ -43,11 +43,11 @@ <extend android:fromExtendLeft="0" android:fromExtendTop="0" - android:fromExtendRight="10%" + android:fromExtendRight="96dp" android:fromExtendBottom="0" android:toExtendLeft="0" android:toExtendTop="0" - android:toExtendRight="10%" + android:toExtendRight="96dp" android:toExtendBottom="0" android:interpolator="@interpolator/fast_out_extra_slow_in" android:startOffset="0" diff --git a/core/res/res/anim/activity_close_exit.xml b/core/res/res/anim/activity_close_exit.xml index f807c26dda20..a6710490d820 100644 --- a/core/res/res/anim/activity_close_exit.xml +++ b/core/res/res/anim/activity_close_exit.xml @@ -32,7 +32,7 @@ <translate android:fromXDelta="0" - android:toXDelta="10%" + android:toXDelta="96dp" android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true" @@ -41,11 +41,11 @@ android:duration="450" /> <extend - android:fromExtendLeft="10%" + android:fromExtendLeft="96dp" android:fromExtendTop="0" android:fromExtendRight="0" android:fromExtendBottom="0" - android:toExtendLeft="10%" + android:toExtendLeft="96dp" android:toExtendTop="0" android:toExtendRight="0" android:toExtendBottom="0" diff --git a/core/res/res/anim/activity_open_enter.xml b/core/res/res/anim/activity_open_enter.xml index 1674dab3040a..f3172e4cace9 100644 --- a/core/res/res/anim/activity_open_enter.xml +++ b/core/res/res/anim/activity_open_enter.xml @@ -30,7 +30,7 @@ android:duration="83" /> <translate - android:fromXDelta="10%" + android:fromXDelta="96dp" android:toXDelta="0" android:fillEnabled="true" android:fillBefore="true" @@ -39,11 +39,11 @@ android:duration="450" /> <extend - android:fromExtendLeft="10%" + android:fromExtendLeft="96dp" android:fromExtendTop="0" android:fromExtendRight="0" android:fromExtendBottom="0" - android:toExtendLeft="10%" + android:toExtendLeft="96dp" android:toExtendTop="0" android:toExtendRight="0" android:toExtendBottom="0" diff --git a/core/res/res/anim/activity_open_exit.xml b/core/res/res/anim/activity_open_exit.xml index 372f2c8e09f6..d84827b835d3 100644 --- a/core/res/res/anim/activity_open_exit.xml +++ b/core/res/res/anim/activity_open_exit.xml @@ -31,7 +31,7 @@ <translate android:fromXDelta="0" - android:toXDelta="-10%" + android:toXDelta="-96dp" android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true" @@ -42,11 +42,11 @@ <extend android:fromExtendLeft="0" android:fromExtendTop="0" - android:fromExtendRight="10%" + android:fromExtendRight="96dp" android:fromExtendBottom="0" android:toExtendLeft="0" android:toExtendTop="0" - android:toExtendRight="10%" + android:toExtendRight="96dp" android:toExtendBottom="0" android:interpolator="@interpolator/fast_out_extra_slow_in" android:startOffset="0" diff --git a/core/res/res/anim/task_fragment_close_exit.xml b/core/res/res/anim/task_fragment_close_exit.xml index 84d8b7e6b5cd..64540852eea1 100644 --- a/core/res/res/anim/task_fragment_close_exit.xml +++ b/core/res/res/anim/task_fragment_close_exit.xml @@ -30,7 +30,7 @@ <translate android:fromXDelta="0" - android:toXDelta="10%" + android:toXDelta="96dp" android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true" diff --git a/core/res/res/anim/task_fragment_open_enter.xml b/core/res/res/anim/task_fragment_open_enter.xml index 87ee17925ca7..5f57ed54bf07 100644 --- a/core/res/res/anim/task_fragment_open_enter.xml +++ b/core/res/res/anim/task_fragment_open_enter.xml @@ -27,7 +27,7 @@ android:startOffset="50" android:duration="83" /> <translate - android:fromXDelta="10%" + android:fromXDelta="96dp" android:toXDelta="0" android:fillEnabled="true" android:fillBefore="true" |