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