blob: 3852f83cf53660bac154a41ab461100e6ba7c5a5 [file] [log] [blame]
The Android Open Source Projected217d92008-12-17 18:05:52 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright 2008, 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-->
19
20<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 android:orientation="vertical"
22 android:layout_width="fill_parent"
23 android:layout_height="wrap_content">
24
25 <LinearLayout
26 android:layout_width="fill_parent"
27 android:layout_height="wrap_content"
28 android:id="@+id/content_border"
29 android:padding="1px">
30
31 <LinearLayout
32 android:layout_width="fill_parent"
33 android:layout_height="wrap_content"
34 android:id="@+id/content_background"
35 android:padding="4dip">
36
37 <ImageView
38 android:id="@+id/origin_icon"
39 android:padding="10dip"
40 android:layout_centerHorizontal="true"
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:visibility="gone"
44 android:adjustViewBounds="true"
45 android:src="@drawable/gears"/>
46
47 <LinearLayout
48 android:layout_width="fill_parent"
49 android:layout_height="wrap_content"
50 android:padding="4dip"
51 android:orientation="vertical">
52
53 <TextView
54 android:id="@+id/origin_title"
55 android:layout_width="fill_parent"
56 android:layout_height="wrap_content"
57 android:visibility="gone"
58 android:textStyle="bold"
59 android:gravity="left"
60 android:textSize="13dip"
61 android:textColor="@color/black"/>
62
63 <TextView
64 android:id="@+id/origin_subtitle"
65 android:layout_width="fill_parent"
66 android:layout_height="wrap_content"
67 android:visibility="gone"
68 android:gravity="left"
69 android:textSize="13dip"
70 android:textColor="@color/black"/>
71
72 <TextView
73 android:id="@+id/origin_message"
74 android:layout_width="fill_parent"
75 android:layout_height="wrap_content"
76 android:visibility="gone"
77 android:paddingTop="10dip"
78 android:gravity="left"
79 android:textSize="13dip"
80 android:textColor="@color/black"/>
81
82 </LinearLayout>
83
84 </LinearLayout>
85
86 </LinearLayout>
87
88 <TextView
89 android:id="@+id/privacy_policy_label"
90 android:layout_width="fill_parent"
91 android:layout_height="wrap_content"
92 android:paddingTop="10dip"
93 android:gravity="center_horizontal"
94 android:textSize="13dip"
95 android:textStyle="italic"
96 android:textColor="@color/black"
97 android:visibility="gone"
98 android:text="@string/privacy_policy" />
99
100</LinearLayout>