1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2024 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<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
19    xmlns:app="http://schemas.android.com/apk/res-auto">
20
21    <Transition
22        app:constraintSetStart="@id/lock_option_container"
23        app:constraintSetEnd="@id/home_option_container" />
24
25    <ConstraintSet android:id="@+id/lock_option_container">
26
27        <Constraint
28            android:id="@+id/lock_customization_option_container"
29            android:layout_width="match_parent"
30            android:layout_height="wrap_content"
31            android:showDividers="middle"
32            android:divider="@drawable/customization_option_entry_divider"
33            android:orientation="vertical"
34            android:visibility="visible" />
35
36        <Constraint
37            android:id="@+id/home_customization_option_container"
38            android:layout_width="match_parent"
39            android:layout_height="wrap_content"
40            android:showDividers="middle"
41            android:divider="@drawable/customization_option_entry_divider"
42            android:orientation="vertical"
43            android:visibility="invisible" />
44    </ConstraintSet>
45
46    <ConstraintSet android:id="@+id/home_option_container">
47
48        <Constraint
49            android:id="@+id/lock_customization_option_container"
50            android:layout_width="match_parent"
51            android:layout_height="wrap_content"
52            android:showDividers="middle"
53            android:divider="@drawable/customization_option_entry_divider"
54            android:orientation="vertical"
55            android:visibility="invisible" />
56
57        <Constraint
58            android:id="@+id/home_customization_option_container"
59            android:layout_width="match_parent"
60            android:layout_height="wrap_content"
61            android:showDividers="middle"
62            android:divider="@drawable/customization_option_entry_divider"
63            android:orientation="vertical"
64            android:visibility="visible" />
65    </ConstraintSet>
66</MotionScene>