The demo used an obsolete/wrong tag name for TransitionSet (set, instead of the correct transitionSet). This caused the demo to crash at runtime and to produce incorrect example docs in the Transition reference pages. Issue #11346546 Transition ApiDemo crashes Change-Id: I12142870ac4f7412e5809b9cdad3ca3015449d77
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2013 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<!-- BEGIN_INCLUDE(TransitionSet) -->
|
|
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:transitionOrdering="sequential">
|
|
<changeBounds/>
|
|
<fade android:fadingMode="fade_out" >
|
|
<targets>
|
|
<target android:targetId="@id/grayscaleContainer" />
|
|
</targets>
|
|
</fade>
|
|
</transitionSet>
|
|
<!-- END_INCLUDE(TransitionSet) -->
|