blob: 577ec3cbfc8a7f64b9ea3dde0be062d006846ecc [file] [log] [blame]
Jeff Sharkey94635992015-04-13 14:15:26 -07001<?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
Pasty Changc1f86002018-12-11 02:22:55 +000017<com.google.android.setupdesign.GlifLayout
Jeff Sharkey94635992015-04-13 14:15:26 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Sharkey94635992015-04-13 14:15:26 -070019 android:id="@+id/setup_wizard_layout"
20 android:layout_width="match_parent"
pastychang28fd9b12018-12-20 16:54:38 +080021 android:layout_height="match_parent">
Jeff Sharkey94635992015-04-13 14:15:26 -070022
23 <LinearLayout
pastychang79614822019-01-03 10:12:54 +080024 style="@style/SudContentFrame"
Jeff Sharkey94635992015-04-13 14:15:26 -070025 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"
pastychang79614822019-01-03 10:12:54 +080033 android:layout_marginTop="@dimen/sud_description_margin_top"
Jeff Sharkey94635992015-04-13 14:15:26 -070034 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"
pastychang79614822019-01-03 10:12:54 +080040 android:lineSpacingExtra="@dimen/sud_description_line_spacing_extra"
Jeff Sharkey94635992015-04-13 14:15:26 -070041 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"
pastychang79614822019-01-03 10:12:54 +080047 android:layout_marginTop="@dimen/sud_description_margin_top"
48 android:lineSpacingExtra="@dimen/sud_description_line_spacing_extra"
Jeff Sharkey2af67a92018-04-01 18:25:54 -060049 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" />
Jeff Sharkey94635992015-04-13 14:15:26 -070057
58 </LinearLayout>
59
Pasty Changc1f86002018-12-11 02:22:55 +000060</com.google.android.setupdesign.GlifLayout>