OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 |
| 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. |
| 6 --> |
| 7 |
| 8 <set xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:shareInterpolator="false" |
| 10 android:zAdjustment="top"> |
| 11 <alpha android:fromAlpha="0.0" |
| 12 android:toAlpha="1.0" |
| 13 android:interpolator="@anim/decelerate_quart" |
| 14 android:fillEnabled="true" |
| 15 android:fillBefore="false" |
| 16 android:fillAfter="true" |
| 17 android:duration="200"/> |
| 18 <translate android:fromYDelta="8%" |
| 19 android:toYDelta="0" |
| 20 android:fillEnabled="true" |
| 21 android:fillBefore="true" |
| 22 android:fillAfter="true" |
| 23 android:interpolator="@android:interpolator/decelerate_quint" |
| 24 android:duration="300"/> |
| 25 </set> |
OLD | NEW |