Home | History | Annotate | Download | only in anim
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <set
     18     xmlns:android="http://schemas.android.com/apk/res/android" >
     19     <set
     20         android:ordering="sequentially" >
     21         <objectAnimator
     22             android:duration="166"
     23             android:propertyName="scaleX"
     24             android:valueFrom="1.0"
     25             android:valueTo="0.5"
     26             android:valueType="floatType"
     27             android:interpolator="@android:interpolator/fast_out_slow_in" />
     28         <objectAnimator
     29             android:duration="16"
     30             android:propertyName="scaleX"
     31             android:valueFrom="0.5"
     32             android:valueTo="0.9"
     33             android:valueType="floatType"
     34             android:interpolator="@android:interpolator/fast_out_slow_in" />
     35         <objectAnimator
     36             android:duration="316"
     37             android:propertyName="scaleX"
     38             android:valueFrom="0.9"
     39             android:valueTo="1.0"
     40             android:valueType="floatType"
     41             android:interpolator="@android:interpolator/fast_out_slow_in" />
     42     </set>
     43     <set
     44         android:ordering="sequentially" >
     45         <objectAnimator
     46             android:duration="166"
     47             android:propertyName="scaleY"
     48             android:valueFrom="1.0"
     49             android:valueTo="0.5"
     50             android:valueType="floatType"
     51             android:interpolator="@android:interpolator/fast_out_slow_in" />
     52         <objectAnimator
     53             android:duration="16"
     54             android:propertyName="scaleY"
     55             android:valueFrom="0.5"
     56             android:valueTo="0.9"
     57             android:valueType="floatType"
     58             android:interpolator="@android:interpolator/fast_out_slow_in" />
     59         <objectAnimator
     60             android:duration="316"
     61             android:propertyName="scaleY"
     62             android:valueFrom="0.9"
     63             android:valueTo="1.0"
     64             android:valueType="floatType"
     65             android:interpolator="@android:interpolator/fast_out_slow_in" />
     66     </set>
     67 </set>
     68