blob: 3fe73d358e9d3c5baafe06a62dd4f2c1647b0a66 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<ScrollView
18 xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy15b8ec62010-01-08 15:06:43 -080019 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080020 android:layout_height="wrap_content"
21 android:orientation="vertical">
22
23 <LinearLayout
Romain Guy15b8ec62010-01-08 15:06:43 -080024 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080025 android:layout_height="wrap_content"
26 android:orientation="vertical">
27
28 <!-- Warnings header -->
29 <TextView
30 android:id="@+id/warnings_header"
31 android:layout_height="wrap_content"
Romain Guy15b8ec62010-01-08 15:06:43 -080032 android:layout_width="match_parent"
Michael Kolbd3e4d4f2010-10-15 10:58:44 -070033 android:textAppearance="?android:attr/textAppearanceLarge"
The Android Open Source Project0c908882009-03-03 19:32:16 -080034 android:gravity="left"
35 android:text="@string/ssl_warnings_header"
36 android:layout_marginRight="20dip"
37 android:layout_marginLeft="20dip"
38 android:layout_marginTop="12dip" />
39
40 <!-- Placeholder for one or more warnings -->
41 <LinearLayout
42 android:id="@+id/placeholder"
43 android:layout_height="wrap_content"
Romain Guy15b8ec62010-01-08 15:06:43 -080044 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080045 android:layout_marginTop="12dip"
46 android:orientation="vertical" />
47
48 </LinearLayout>
49
50</ScrollView>