blob: 5716642b5191ad6d8635734d9ff19de6d6eb6045 [file] [log] [blame]
Martin Hibdon469817c2014-09-11 16:07:18 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2014 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18<LinearLayout
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+id/security_hold_view"
21 android:layout_width="match_parent"
22 android:layout_height="match_parent"
23 android:gravity="center"
24 android:orientation="vertical"
25 android:visibility="invisible" >
26
27 <ImageView
28 android:id="@+id/security_hold_icon"
29 android:layout_height="wrap_content"
30 android:layout_width="wrap_content"
31 android:src="@drawable/ic_warning_56dp"/>
32
33 <TextView
34 android:id="@+id/security_hold_text"
35 android:fontFamily="sans-serif-light"
36 android:gravity="center"
37 android:layout_height="wrap_content"
38 android:layout_width="wrap_content"
39 android:layout_marginTop="20dp"
40 android:maxWidth="@dimen/security_hold_text_width"
41 android:textAllCaps="true"
42 android:textColor="#212121"
43 android:textSize="@dimen/security_hold_view_text_size"/>
44
45 <TextView
46 android:id="@+id/security_hold_button"
47 android:fontFamily="sans-serif-light"
48 android:gravity="center"
49 android:layout_height="wrap_content"
50 android:layout_width="wrap_content"
51 android:layout_marginTop="60dp"
52 android:text="@string/update_security_text"
Andrew Sappersteind2927702014-09-15 15:02:33 -070053 android:textColor="@color/text_color_blue"
Martin Hibdon469817c2014-09-11 16:07:18 -070054 android:textSize="@dimen/security_hold_view_text_size"/>
55
56</LinearLayout>