OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
David Trainor- moved to gerrit
2014/12/16 23:13:54
2014
Jaekyun Seok (inactive)
2014/12/17 01:21:08
Done.
| |
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 <set xmlns:android="http://schemas.android.com/apk/res/android"> | |
8 <alpha | |
9 android:fromAlpha="0" | |
10 android:toAlpha="1.0" | |
11 android:duration="@android:integer/config_mediumAnimTime" | |
12 android:interpolator="@android:anim/accelerate_interpolator" | |
13 /> | |
14 <translate | |
15 android:fromYDelta="15" | |
16 android:toYDelta="0" | |
17 android:duration="@android:integer/config_mediumAnimTime" /> | |
18 </set> | |
OLD | NEW |