Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c041d883 authored by Winson Chung's avatar Winson Chung
Browse files

Tweaking animation XMLs and removing dead code. (Bug 17672056, Bug 18415217)

- Use shape drawable for pin background instead of asset.
- Includes fix for scrolling regression when task stack scroller was not reset.

Change-Id: I11eec1f3b0386b4354c8c5e3deca2b17cff83be1
parent 99253d00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
** limitations under the License.
*/
-->

<!-- Recents Activity -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:shareInterpolator="false"
     android:zAdjustment="top">
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
** limitations under the License.
*/
-->

<!-- Incoming Activity -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:shareInterpolator="false"
     android:zAdjustment="normal">
+3 −3
Original line number Diff line number Diff line
@@ -16,13 +16,13 @@
** limitations under the License.
*/
-->

<!-- Recents Activity -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:shareInterpolator="false"
     android:zAdjustment="normal">
  <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
  <alpha android:fromAlpha="1.0" android:toAlpha="1.0"
         android:fillEnabled="true"
         android:fillBefore="true" android:fillAfter="true"
         android:interpolator="@android:interpolator/linear"
         android:duration="50"/>
         android:duration="1"/>
</set>
+2 −3
Original line number Diff line number Diff line
@@ -16,14 +16,13 @@
** limitations under the License.
*/
-->

<!-- Launcher Activity -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:shareInterpolator="false"
     android:zAdjustment="top">
  <alpha android:fromAlpha="1.0" android:toAlpha="0.0"
  		 android:startOffset="50"
         android:fillEnabled="true"
         android:fillBefore="true" android:fillAfter="true"
         android:interpolator="@android:interpolator/linear_out_slow_in"
         android:duration="100"/>
         android:duration="@integer/recents_enter_from_home_transition_duration"/>
</set>
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
** limitations under the License.
*/
-->

<!-- Launcher Activity -->
<set xmlns:android="http://schemas.android.com/apk/res/android"
     android:shareInterpolator="false"
     android:zAdjustment="normal">
Loading