The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1 | <?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 | <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 21 | android:layout_width="fill_parent" |
| 22 | android:layout_height="wrap_content" |
| 23 | android:paddingBottom="10dip"> |
| 24 | |
| 25 | <LinearLayout |
| 26 | android:orientation="vertical" |
| 27 | android:layout_width="fill_parent" |
| 28 | android:paddingTop="10dip" |
| 29 | android:paddingLeft="10dip" |
| 30 | android:paddingRight="10dip" |
| 31 | android:layout_height="wrap_content"> |
| 32 | |
| 33 | <LinearLayout |
| 34 | android:layout_width="fill_parent" |
| 35 | android:layout_height="wrap_content" |
| 36 | android:orientation="horizontal"> |
| 37 | |
| 38 | <ImageView |
| 39 | android:id="@+id/origin_icon" |
| 40 | android:padding="10dip" |
| 41 | android:layout_centerHorizontal="true" |
| 42 | android:layout_width="wrap_content" |
| 43 | android:layout_height="wrap_content" |
| 44 | android:visibility="gone" |
| 45 | android:adjustViewBounds="true" |
| 46 | android:src="@drawable/gears"/> |
| 47 | |
| 48 | <LinearLayout |
| 49 | android:layout_width="fill_parent" |
| 50 | android:layout_height="wrap_content" |
| 51 | android:padding="4dip" |
| 52 | android:orientation="vertical"> |
| 53 | |
| 54 | <TextView |
| 55 | android:id="@+id/origin_title" |
| 56 | android:layout_width="fill_parent" |
| 57 | android:layout_height="wrap_content" |
| 58 | android:visibility="gone" |
| 59 | android:textStyle="bold" |
| 60 | android:gravity="left" |
| 61 | android:textSize="16dip" |
| 62 | android:textColor="@color/white"/> |
| 63 | |
| 64 | <TextView |
| 65 | android:id="@+id/origin_subtitle" |
| 66 | android:layout_width="fill_parent" |
| 67 | android:layout_height="wrap_content" |
| 68 | android:visibility="gone" |
| 69 | android:gravity="left" |
| 70 | android:textSize="13dip" |
| 71 | android:textColor="@color/white"/> |
| 72 | |
| 73 | <TextView |
| 74 | android:id="@+id/origin_message" |
| 75 | android:layout_width="fill_parent" |
| 76 | android:layout_height="wrap_content" |
| 77 | android:visibility="gone" |
| 78 | android:paddingTop="10dip" |
| 79 | android:gravity="left" |
| 80 | android:textSize="13dip" |
| 81 | android:textColor="@color/white"/> |
| 82 | |
| 83 | </LinearLayout> |
| 84 | |
| 85 | </LinearLayout> |
| 86 | |
| 87 | <TextView |
| 88 | android:id="@+id/privacy_policy_label" |
| 89 | android:layout_width="fill_parent" |
| 90 | android:layout_height="wrap_content" |
| 91 | android:paddingTop="10dip" |
| 92 | android:gravity="center_horizontal" |
| 93 | android:textSize="13dip" |
| 94 | android:textStyle="italic" |
| 95 | android:textColor="@color/white" |
| 96 | android:visibility="gone" |
| 97 | android:text="@string/privacy_policy" /> |
| 98 | |
| 99 | <TextView |
| 100 | android:id="@+id/permission_dialog_message" |
| 101 | android:layout_width="fill_parent" |
| 102 | android:layout_height="wrap_content" |
| 103 | android:paddingLeft="4dip" |
| 104 | android:paddingTop="10dip" |
| 105 | android:gravity="left" |
| 106 | android:textSize="16dip" |
| 107 | android:textColor="@color/white"/> |
| 108 | |
| 109 | </LinearLayout> |
| 110 | |
| 111 | </ScrollView> |