blob: 6b8e65f5e8a6d2a525eaf18947956ab9a67a60a0 [file] [log] [blame]
Jason parksec5a45e2011-01-18 15:28:36 -06001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Ben Komalof0104df2011-08-16 17:48:42 -070021 android:padding="16dip"
Jason parksec5a45e2011-01-18 15:28:36 -060022 android:orientation="vertical"
23>
24
25 <TextView
Ben Komalof0104df2011-08-16 17:48:42 -070026 android:id="@+id/title"
Jason parksec5a45e2011-01-18 15:28:36 -060027 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:minHeight="48dip"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070030 android:layout_alignParentStart="true"
Jason parksec5a45e2011-01-18 15:28:36 -060031 android:layout_centerVertical="true"
Jason parksec5a45e2011-01-18 15:28:36 -060032 android:textSize="30dip"
Ben Komalo9cec1be2011-09-01 10:30:13 -070033 android:textColor="@color/title_color"
Jason parksec5a45e2011-01-18 15:28:36 -060034 android:text="@string/crypt_keeper_setup_title"
35 android:gravity="bottom"
36 />
37
38 <!-- Divider -->
39 <RelativeLayout
40 android:id="@+id/top_divider"
41 android:layout_width="match_parent"
42 android:layout_height="wrap_content"
43 >
44 <ProgressBar
45 android:id="@+id/progress_bar"
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"
48 style="?android:attr/progressBarStyleHorizontal"
49 />
50 </RelativeLayout>
Ben Komalof0104df2011-08-16 17:48:42 -070051
52
Jason parksec5a45e2011-01-18 15:28:36 -060053 <TextView
Jason parks00046d62011-06-13 17:38:45 -050054 android:id="@+id/status"
Ben Komalof0104df2011-08-16 17:48:42 -070055 android:textAppearance="?android:attr/textAppearanceMedium"
Jason parksec5a45e2011-01-18 15:28:36 -060056 android:layout_width="match_parent"
Ben Komalof0104df2011-08-16 17:48:42 -070057 android:layout_height="wrap_content"
58 />
59
60 <ImageView
61 android:id="@+id/encroid"
62 android:layout_width="wrap_content"
Jason parksec5a45e2011-01-18 15:28:36 -060063 android:layout_height="0dip"
64 android:layout_weight="1"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070065 android:layout_gravity="bottom|end"
Ben Komalof0104df2011-08-16 17:48:42 -070066 android:src="@drawable/encroid_waiting"
alanv0aa7c4f2012-05-21 17:55:19 -070067 android:contentDescription="@null"
Ben Komalof0104df2011-08-16 17:48:42 -070068 />
69
70 <Button
71 android:id="@+id/factory_reset"
72 android:layout_width="wrap_content"
73 android:layout_height="wrap_content"
74 android:layout_margin="32dip"
75 android:layout_gravity="center"
76 android:text="@string/master_clear_button_text"
77 android:visibility="gone"
Jason parksec5a45e2011-01-18 15:28:36 -060078 />
79
80</LinearLayout>