1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2016 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17 18<transitionSet xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:tv="http://schemas.android.com/apk/res-auto"> 20 <transition class="com.android.tv.dvr.ui.FadeBackground" 21 android:interpolator="@android:interpolator/linear_out_slow_in" 22 android:duration="500" 23 tv:fadingMode="fade_in"> 24 <targets> 25 <target android:targetId="@id/details_frame" /> 26 <target android:targetId="@id/details_overview_image" /> 27 <target android:targetId="@id/details_overview_right_panel" /> 28 </targets> 29 </transition> 30 <!-- The followings are copied from lb_shared_element_enter_transiton.xml --> 31 <fade 32 android:fadingMode="fade_in" 33 android:interpolator="@android:interpolator/linear_out_slow_in" 34 android:startDelay="325" 35 android:duration="150"/> 36 <changeBounds 37 android:interpolator="@android:interpolator/linear_out_slow_in" 38 android:duration="500"/> 39 <changeTransform 40 android:interpolator="@android:interpolator/linear_out_slow_in" 41 android:duration="500"/> 42 <!-- TODO: Change this to changeImageTransform once b/32405620 is fixed. --> 43 <transition class="com.android.tv.dvr.ui.ChangeImageTransformWithScaledParent" 44 android:interpolator="@android:interpolator/linear_out_slow_in" 45 android:duration="500"/> 46</transitionSet>