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<com.google.android.setupdesign.GlifLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:id="@+id/setup_wizard_layout"
20    android:layout_width="match_parent"
21    android:layout_height="match_parent">
22
23    <LinearLayout
24        style="@style/SudContentFrame"
25        android:layout_width="match_parent"
26        android:layout_height="match_parent"
27        android:orientation="vertical">
28
29        <ProgressBar
30            android:id="@+id/storage_wizard_progress"
31            android:layout_width="match_parent"
32            android:layout_height="wrap_content"
33            android:layout_marginTop="@dimen/sud_description_margin_top"
34            android:indeterminate="false"
35            style="?android:attr/progressBarStyleHorizontal" />
36        <TextView
37            android:id="@+id/storage_wizard_progress_summary"
38            android:layout_width="match_parent"
39            android:layout_height="wrap_content"
40            android:lineSpacingExtra="@dimen/sud_description_line_spacing_extra"
41            android:textColor="?android:attr/textColorSecondary" />
42
43        <TextView
44            android:id="@+id/storage_wizard_body"
45            android:layout_width="match_parent"
46            android:layout_height="wrap_content"
47            android:layout_marginTop="@dimen/sud_description_margin_top"
48            android:lineSpacingExtra="@dimen/sud_description_line_spacing_extra"
49            android:textColor="?android:attr/textColorPrimary"
50            android:visibility="gone" />
51
52        <FrameLayout
53            android:id="@+id/storage_wizard_aux"
54            android:layout_width="match_parent"
55            android:layout_height="wrap_content"
56            android:visibility="gone" />
57
58    </LinearLayout>
59
60</com.google.android.setupdesign.GlifLayout>
61