diff options
Diffstat (limited to 'res/layout')
28 files changed, 0 insertions, 2051 deletions
diff --git a/res/layout/add_new_bookmark.xml b/res/layout/add_new_bookmark.xml deleted file mode 100644 index bb56b93..0000000 --- a/res/layout/add_new_bookmark.xml +++ /dev/null @@ -1,59 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:minHeight="?android:attr/listPreferredItemHeight" - android:orientation="horizontal" - android:paddingRight="6dip" - android:paddingLeft="6dip" - android:paddingTop="5dip" - android:paddingBottom="5dip" - android:gravity="center_vertical" - > - <ImageView android:id="@+id/favicon" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginLeft="5dip" - android:layout_marginRight="11dip" - android:focusable="false" - android:src="@*android:drawable/sym_action_add" - android:scaleType="fitCenter" - /> - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - > - <TextView android:id="@+id/title" - android:text="@string/add_new_bookmark" - android:textAppearance="?android:attr/textAppearanceMedium" - android:textStyle="bold" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginBottom="2dip" - /> - <TextView android:id="@+id/url" - android:textAppearance="?android:attr/textAppearanceSmall" - android:maxLines="1" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:singleLine="true" - android:ellipsize="end" - /> - </LinearLayout> -</LinearLayout> diff --git a/res/layout/browser_add_bookmark.xml b/res/layout/browser_add_bookmark.xml deleted file mode 100644 index ca84f30..0000000 --- a/res/layout/browser_add_bookmark.xml +++ /dev/null @@ -1,97 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2007 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - > - - <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_weight="1" - android:orientation="vertical" - android:paddingTop="5dip" - android:paddingBottom="13dip" - android:paddingLeft="20dip" - android:paddingRight="20dip" > - - <TextView - android:id="@+id/titleText" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/name" - android:gravity="left" - android:textAppearance="?android:attr/textAppearanceMedium" /> - - <EditText - android:id="@+id/title" - android:layout_height="wrap_content" - android:layout_width="250dip" - android:gravity="fill_horizontal" - android:inputType="textCapSentences" - android:selectAllOnFocus="true" - android:textAppearance="?android:attr/textAppearanceMedium" /> - - - - <TextView - android:id="@+id/addressText" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/location" - android:gravity="left" - android:textAppearance="?android:attr/textAppearanceMedium" /> - - <EditText - android:id="@+id/address" - android:layout_height="wrap_content" - android:layout_width="250dip" - android:hint="@string/http" - android:gravity="fill_horizontal" - android:inputType="textUri" - android:selectAllOnFocus="true" - android:textAppearance="?android:attr/textAppearanceMedium" /> - </LinearLayout> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:background="#c6c3c6" - android:minHeight="54dip" - android:orientation="horizontal" - android:paddingTop="4dip" - android:paddingLeft="2dip" - android:paddingRight="2dip" > - <Button android:id="@+id/OK" - android:text="@string/save" - android:layout_width="0dip" - android:layout_gravity="left" - android:layout_weight="1" - android:maxLines="2" - android:layout_height="wrap_content" /> - <Button android:id="@+id/cancel" - android:text="@string/do_not_save" - android:layout_width="0dip" - android:layout_gravity="right" - android:layout_weight="1" - android:maxLines="2" - android:layout_height="wrap_content" /> - </LinearLayout> - -</LinearLayout> - diff --git a/res/layout/browser_bookmarks_page.xml b/res/layout/browser_bookmarks_page.xml deleted file mode 100644 index 3fb0308..0000000 --- a/res/layout/browser_bookmarks_page.xml +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2006 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - > - <ListView android:id="@+id/list" - android:layout_width="fill_parent" - android:layout_height="0dip" - android:layout_weight="1" - /> -</LinearLayout> diff --git a/res/layout/browser_download_item.xml b/res/layout/browser_download_item.xml deleted file mode 100644 index c26aab9..0000000 --- a/res/layout/browser_download_item.xml +++ /dev/null @@ -1,89 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* -** assets/res/any/layout/browser_bookmark_item.xml -** -** Copyright 2006, The Android Open Source Project -** -** Licensed under the Apache License, Version 2.0 (the "License"); -** you may not use this file except in compliance with the License. -** You may obtain a copy of the License at -** -** http://www.apache.org/licenses/LICENSE-2.0 -** -** Unless required by applicable law or agreed to in writing, software -** distributed under the License is distributed on an "AS IS" BASIS, -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -** See the License for the specific language governing permissions and -** limitations under the License. -*/ ---> - -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <ImageView android:id="@+id/download_icon" - android:layout_width="@android:dimen/app_icon_size" - android:layout_height="@android:dimen/app_icon_size" - android:layout_alignParentTop="true" - android:layout_alignParentLeft="true" - android:scaleType="fitCenter" - /> - - <TextView android:id="@+id/download_title" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:maxLines="1" - android:layout_alignParentTop="true" - android:layout_toRightOf="@id/download_icon" - android:textAppearance="?android:attr/textAppearanceMedium" - /> - <TextView android:id="@+id/domain" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_toRightOf="@id/download_icon" - android:layout_below="@id/download_title" - android:maxLines="1" - android:textAppearance="?android:attr/textAppearanceSmall" - /> - - <TextView android:id="@+id/complete_date" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:maxLines="1" - android:textAppearance="?android:attr/textAppearanceSmall" - android:layout_below="@id/domain" - android:layout_alignParentRight="true" - android:visibility="gone" - /> - - <TextView android:id="@+id/complete_text" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_below="@id/domain" - android:layout_toRightOf="@id/download_icon" - android:layout_toLeftOf="@id/complete_date" - android:textAppearance="?android:attr/textAppearanceSmall" - android:visibility="gone" - /> - - <ProgressBar android:id="@+id/download_progress" - style="?android:attr/progressBarStyleHorizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_below="@id/download_icon" - android:layout_alignParentLeft="true" - android:layout_alignParentRight="true" - android:max="100" - /> - <TextView android:id="@+id/progress_text" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:maxLines="1" - android:textAppearance="?android:attr/textAppearanceSmall" - android:layout_centerHorizontal="true" - android:layout_below="@id/download_progress" - /> -</RelativeLayout> - diff --git a/res/layout/browser_downloads_page.xml b/res/layout/browser_downloads_page.xml deleted file mode 100644 index c83a727..0000000 --- a/res/layout/browser_downloads_page.xml +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* -** assets/res/any/layout/browser_bookmarks_page.xml -** -** Copyright 2006, The Android Open Source Project -** -** Licensed under the Apache License, Version 2.0 (the "License"); -** you may not use this file except in compliance with the License. -** You may obtain a copy of the License at -** -** http://www.apache.org/licenses/LICENSE-2.0 -** -** Unless required by applicable law or agreed to in writing, software -** distributed under the License is distributed on an "AS IS" BASIS, -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -** See the License for the specific language governing permissions and -** limitations under the License. -*/ ---> - -<ListView xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/list" - android:layout_width="fill_parent" - android:layout_height="fill_parent"/> diff --git a/res/layout/browser_find.xml b/res/layout/browser_find.xml deleted file mode 100644 index 000799f..0000000 --- a/res/layout/browser_find.xml +++ /dev/null @@ -1,86 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2007 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/findControls" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingTop="5dip" - android:paddingLeft="4dip" - android:paddingRight="4dip" - android:paddingBottom="1dip" - android:background="@android:drawable/bottom_bar"> - <ImageButton - android:src="@drawable/ic_btn_find_prev" - android:id="@+id/previous" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - /> - - <ImageButton - android:src="@drawable/ic_btn_find_next" - android:id="@+id/next" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - /> - - <LinearLayout - android:layout_height="wrap_content" - android:layout_width="0dip" - android:layout_weight="1" - android:orientation="vertical" - android:layout_marginRight="6dip" - > - <EditText android:id="@+id/edit" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:scrollHorizontally="true" - android:inputType="text" - android:hint="@string/find_dot" - /> - <LinearLayout android:id="@+id/matches_view" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:orientation="horizontal" - android:layout_gravity="right" - android:visibility="invisible" - > - <TextView android:id="@+id/matches" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="right" - android:text="@string/zero" - android:textAppearance="?android:attr/textAppearanceSmall" - android:textColor="?android:attr/textColorSecondaryInverse" - /> - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginRight="3dip" - android:layout_gravity="right" - android:text="@string/matches_found" - android:textAppearance="?android:attr/textAppearanceSmall" - android:textColor="?android:attr/textColorSecondaryInverse" - /> - </LinearLayout> - </LinearLayout> - <ImageButton android:id="@+id/done" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:src="@drawable/ic_btn_close_panel" - /> -</LinearLayout> - diff --git a/res/layout/browser_subwindow.xml b/res/layout/browser_subwindow.xml deleted file mode 100644 index 5b00bf7..0000000 --- a/res/layout/browser_subwindow.xml +++ /dev/null @@ -1,50 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2007 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/subwindow_container" - android:layout_width="fill_parent" - android:layout_height="fill_parent" > - <FrameLayout - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:padding="10dip" > - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:orientation="vertical" - android:background="@android:drawable/dialog_frame" > - <WebView android:id="@+id/webview" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:layout_weight="1" /> - </LinearLayout> - </FrameLayout> - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - android:layout_gravity="right" - android:gravity="right" > - <ImageButton android:id="@+id/subwindow_close" - android:focusable="true" - android:padding="0dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:background="@android:drawable/btn_default" - android:src="@android:drawable/ic_menu_close_clear_cancel" /> - </LinearLayout> -</RelativeLayout> diff --git a/res/layout/empty_history.xml b/res/layout/empty_history.xml deleted file mode 100644 index cbaffd0..0000000 --- a/res/layout/empty_history.xml +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TextView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:text="@string/empty_history" - android:background="@color/black" - android:textColor="@color/white" - android:gravity="center" - android:textStyle="bold" - /> diff --git a/res/layout/gears_dialog.xml b/res/layout/gears_dialog.xml deleted file mode 100644 index 57d4f0b..0000000 --- a/res/layout/gears_dialog.xml +++ /dev/null @@ -1,175 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:drawingCacheQuality="auto" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - android:padding="0dip"> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - android:padding="10dip"> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="horizontal"> - - <ImageView - android:id="@+id/icon" - android:paddingRight="10dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_centerHorizontal="true"/> - - <TextView - android:id="@+id/dialog_title" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_centerVertical="true" - android:gravity="center_vertical" - android:visibility="gone" - android:textSize="16dip" - android:textStyle="bold" - android:textColor="@color/white"/> - - <TextView - android:id="@+id/dialog_message" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:visibility="gone" - android:gravity="center_vertical" - android:textSize="20dip" - android:textColor="@color/white"/> - - </LinearLayout> - - </LinearLayout> - - </LinearLayout> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <ImageView android:id="@+id/titleDivider" - android:layout_width="fill_parent" - android:layout_height="1dip" - android:scaleType="fitXY" - android:gravity="fill_horizontal" - android:src="@drawable/dialog_divider_horizontal_light" - android:layout_marginLeft="10dip" - android:layout_marginRight="10dip"/> - - </LinearLayout> - - <LinearLayout - android:id="@+id/panel_content" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:padding="0dip" - android:layout_weight="1" /> - - <RelativeLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingLeft="10dip" - android:paddingRight="10dip" - android:paddingTop="0dip"> - - <LinearLayout - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <TextView - android:id="@+id/selection" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:textSize="13dip" - android:gravity="right" - android:visibility="gone" - android:textColor="@color/white"/> - - </LinearLayout> - - </RelativeLayout> - - <LinearLayout - android:layout_width="fill_parent" - android:background="@color/gray" - android:layout_height="wrap_content" - android:paddingTop="4dip" - android:paddingLeft="0dip" - android:paddingRight="0dip"> - - <LinearLayout android:id="@+id/leftSpacer" - android:layout_weight="0.25" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:orientation="horizontal" - android:visibility="gone"/> - - <Button - android:id="@+id/button_allow" - android:layout_width="96px" - android:layout_height="48px" - android:layout_gravity="left" - android:layout_weight="1" - android:maxLines="2" - android:textSize="13dip"/> - - <Button - android:id="@+id/button_alwaysdeny" - android:layout_width="96px" - android:layout_height="48px" - android:layout_gravity="left" - android:layout_weight="1" - android:maxLines="2" - android:textSize="13dip"/> - - <Button - android:id="@+id/button_deny" - android:layout_width="96px" - android:layout_height="48px" - android:layout_gravity="right" - android:layout_weight="1" - android:maxLines="2" - android:textSize="13dip"/> - - <LinearLayout android:id="@+id/rightSpacer" - android:layout_width="0dip" - android:layout_weight="0.25" - android:layout_height="wrap_content" - android:orientation="horizontal" - android:visibility="gone" /> - - </LinearLayout> - -</LinearLayout> diff --git a/res/layout/gears_dialog_filepicker.xml b/res/layout/gears_dialog_filepicker.xml deleted file mode 100644 index 68268f1..0000000 --- a/res/layout/gears_dialog_filepicker.xml +++ /dev/null @@ -1,61 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <LinearLayout - android:orientation="horizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <TextView - android:id="@+id/path_name" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textSize="13dip" - android:textColor="@color/dark_gray"/> - - <TextView - android:id="@+id/current_path" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textSize="13dip" - android:textColor="@color/white"/> - - </LinearLayout> - - <LinearLayout - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <GridView android:id="@+id/files_list" - android:padding="4px" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:horizontalSpacing="2px" - android:verticalSpacing="2px" - android:numColumns="3" /> - - </LinearLayout> - -</LinearLayout> diff --git a/res/layout/gears_dialog_filepicker_cell.xml b/res/layout/gears_dialog_filepicker_cell.xml deleted file mode 100644 index 369fc6a..0000000 --- a/res/layout/gears_dialog_filepicker_cell.xml +++ /dev/null @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:gravity="center_horizontal" - android:padding="4px" > - - <ImageView - android:id="@+id/icon" - android:scaleType="fitCenter" - android:layout_width="64px" - android:layout_height="64px" /> - - <TextView - android:id="@+id/name" - android:textColor="@color/white" - android:textSize="13dip" - android:shadowColor="@color/black" - android:shadowRadius="2.0" - android:singleLine="true" - android:ellipsize="middle" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> - -</LinearLayout> diff --git a/res/layout/gears_dialog_permission.xml b/res/layout/gears_dialog_permission.xml deleted file mode 100644 index 01914e2..0000000 --- a/res/layout/gears_dialog_permission.xml +++ /dev/null @@ -1,111 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingBottom="10dip"> - - <LinearLayout - android:orientation="vertical" - android:layout_width="fill_parent" - android:paddingTop="10dip" - android:paddingLeft="10dip" - android:paddingRight="10dip" - android:layout_height="wrap_content"> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="horizontal"> - - <ImageView - android:id="@+id/origin_icon" - android:padding="10dip" - android:layout_centerHorizontal="true" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:visibility="gone" - android:adjustViewBounds="true" - android:src="@drawable/gears"/> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:padding="4dip" - android:orientation="vertical"> - - <TextView - android:id="@+id/origin_title" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:visibility="gone" - android:textStyle="bold" - android:gravity="left" - android:textSize="16dip" - android:textColor="@color/white"/> - - <TextView - android:id="@+id/origin_subtitle" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:visibility="gone" - android:gravity="left" - android:textSize="13dip" - android:textColor="@color/white"/> - - <TextView - android:id="@+id/origin_message" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:visibility="gone" - android:paddingTop="10dip" - android:gravity="left" - android:textSize="13dip" - android:textColor="@color/white"/> - - </LinearLayout> - - </LinearLayout> - - <TextView - android:id="@+id/privacy_policy_label" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingTop="10dip" - android:gravity="center_horizontal" - android:textSize="13dip" - android:textStyle="italic" - android:textColor="@color/white" - android:visibility="gone" - android:text="@string/privacy_policy" /> - - <TextView - android:id="@+id/permission_dialog_message" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingLeft="4dip" - android:paddingTop="10dip" - android:gravity="left" - android:textSize="16dip" - android:textColor="@color/white"/> - - </LinearLayout> - -</ScrollView> diff --git a/res/layout/gears_dialog_settings.xml b/res/layout/gears_dialog_settings.xml deleted file mode 100644 index a9026db..0000000 --- a/res/layout/gears_dialog_settings.xml +++ /dev/null @@ -1,58 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content"> - - <LinearLayout - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:background="@color/gray" - android:padding="1px"> - - <LinearLayout - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:background="@color/white"> - - <ListView android:id="@+id/sites_list" - android:padding="4dip" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - style="@android:style/Widget.ListView.White" /> - - </LinearLayout> - - </LinearLayout> - - <TextView - android:id="@+id/gears_version" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingTop="10dip" - android:gravity="center_horizontal" - android:textSize="13dip" - android:textStyle="italic" - android:textColor="@color/black" /> - -</LinearLayout> diff --git a/res/layout/gears_dialog_settings_row.xml b/res/layout/gears_dialog_settings_row.xml deleted file mode 100644 index 11d757a..0000000 --- a/res/layout/gears_dialog_settings_row.xml +++ /dev/null @@ -1,127 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:textSize="13dip" - android:background="@color/white" - android:textColor="@color/black"> - - <LinearLayout - android:orientation="horizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:padding="4dip"> - - <TextView - android:id="@+id/origin_name" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1" - android:textColor="@color/black" - android:textStyle="bold"/> - - <Button - android:id="@+id/origin_remove" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - style="@style/gears_button" - android:text="@string/remove"/> - - </LinearLayout> - - <TableLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:stretchColumns="0" - android:shrinkColumns="0"> - - <TableRow - android:id="@+id/local_storage_choice" - android:visibility="gone"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="fill_parent" - android:textColor="@color/black" - android:gravity="center_vertical" - android:text="@string/local_storage"/> - - <RadioGroup - android:orientation="horizontal" - android:layout_width="wrap_content" - android:layout_height="fill_parent"> - <RadioButton - android:id="@+id/local_storage_allowed" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textColor="@color/black" - android:textSize="13dip" - android:text="@string/allowed"/> - - <RadioButton - android:id="@+id/local_storage_denied" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textColor="@color/black" - android:textSize="13dip" - android:text="@string/denied"/> - </RadioGroup> - - </TableRow> - - <TableRow - android:id="@+id/location_data_choice" - android:visibility="gone"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="fill_parent" - android:textColor="@color/black" - android:layout_gravity="center_vertical" - android:text="@string/location"/> - - <RadioGroup - android:orientation="horizontal" - android:layout_width="wrap_content" - android:layout_height="fill_parent"> - <RadioButton - android:id="@+id/location_data_allowed" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textColor="@color/black" - android:textSize="13dip" - android:text="@string/allowed"/> - - <RadioButton - android:id="@+id/location_data_denied" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textColor="@color/black" - android:textSize="13dip" - android:text="@string/denied"/> - </RadioGroup> - - </TableRow> - - </TableLayout> - -</LinearLayout> diff --git a/res/layout/gears_dialog_shortcut.xml b/res/layout/gears_dialog_shortcut.xml deleted file mode 100644 index 28f93d0..0000000 --- a/res/layout/gears_dialog_shortcut.xml +++ /dev/null @@ -1,103 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingBottom="10dip"> - - <LinearLayout - android:orientation="vertical" - android:paddingLeft="10dip" - android:paddingRight="10dip" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:padding="4dip" - android:orientation="vertical"> - - <TextView - android:id="@+id/origin_subtitle" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:visibility="gone" - android:textStyle="bold" - android:gravity="left" - android:textSize="16dip" - android:textColor="@color/white"/> - - </LinearLayout> - - <TextView - android:id="@+id/privacy_policy_label" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingTop="10dip" - android:gravity="center_horizontal" - android:textSize="13dip" - android:textStyle="italic" - android:textColor="@color/white" - android:visibility="gone" - android:text="@string/privacy_policy" /> - - <TextView - android:id="@+id/permission_dialog_message" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingTop="10dip" - android:gravity="left" - android:textSize="16dip" - android:textColor="@color/white"/> - - <LinearLayout - android:id="@+id/shortcut_panel" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:visibility="gone" - android:gravity="center" - android:orientation="vertical"> - - <ImageView - android:id="@+id/origin_icon" - android:paddingTop="10dip" - android:layout_centerHorizontal="true" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:gravity="center" - android:adjustViewBounds="true" - android:src="@drawable/gears"/> - - <TextView - android:id="@+id/shortcut_name" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingTop="10dip" - android:gravity="center" - android:textSize="13dip" - android:textColor="@color/white"/> - - </LinearLayout> - - </LinearLayout> - -</ScrollView> - diff --git a/res/layout/gears_settings.xml b/res/layout/gears_settings.xml deleted file mode 100644 index e3a4cbe..0000000 --- a/res/layout/gears_settings.xml +++ /dev/null @@ -1,48 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:drawingCacheQuality="auto" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" - android:padding="0dip"> - - <ListView android:id="@+id/sites_list" - android:padding="4dip" - android:layout_width="fill_parent" - android:layout_height="wrap_content" /> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <ImageView android:id="@+id/titleDivider" - android:layout_width="fill_parent" - android:layout_height="1dip" - android:scaleType="fitXY" - android:gravity="fill_horizontal" - android:src="@drawable/dialog_divider_horizontal_light" - android:layout_marginLeft="10dip" - android:layout_marginRight="10dip"/> - - </LinearLayout> - -</LinearLayout> diff --git a/res/layout/gears_settings_row.xml b/res/layout/gears_settings_row.xml deleted file mode 100644 index 6a1e851..0000000 --- a/res/layout/gears_settings_row.xml +++ /dev/null @@ -1,99 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* - * Copyright 2008, The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ ---> - -<com.android.internal.view.menu.ListMenuItemView - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="?android:attr/listPreferredItemHeight"> - - <RelativeLayout - android:layout_width="0dip" - android:layout_weight="1" - android:layout_height="wrap_content" - android:layout_gravity="center_vertical" - android:layout_marginLeft="6dip" - android:layout_marginRight="6dip" - android:duplicateParentState="true"> - - <TextView - android:id="@+id/title" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_alignParentTop="true" - android:layout_alignParentLeft="true" - android:textAppearance="?android:attr/textAppearanceMedium" - android:singleLine="true" - android:duplicateParentState="true" - android:ellipsize="start" - android:fadingEdge="none"/> - - <TextView - android:id="@+id/subtitle" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_below="@id/title" - android:layout_alignParentLeft="true" - android:textAppearance="?android:attr/textAppearanceSmall" - android:singleLine="false" - android:duplicateParentState="true"/> - - <TextView - android:id="@+id/info" - android:visibility="gone" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_below="@id/subtitle" - android:textAppearance="?android:attr/textAppearanceMedium" - android:singleLine="true" - android:layout_centerHorizontal="true" - android:duplicateParentState="true" - android:ellipsize="marquee" - android:fadingEdge="horizontal"/> - - </RelativeLayout> - - <LinearLayout - android:layout_width="wrap_content" - android:layout_height="fill_parent" - android:paddingLeft="10dip" - android:gravity="center_vertical" - android:orientation="horizontal"> - - <ImageView - android:id="@+id/icon" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:visibility="gone" - android:src="@drawable/ic_dialog_menu_generic" /> - - <CheckBox - android:id="@+id/checkbox" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:drawablePadding="10dip" - android:focusable="false" - android:clickable="false" - android:duplicateParentState="true" - android:visibility="gone" - android:textSize="16dip"/> - - </LinearLayout> - -</com.android.internal.view.menu.ListMenuItemView> diff --git a/res/layout/history_header.xml b/res/layout/history_header.xml deleted file mode 100644 index a390c37..0000000 --- a/res/layout/history_header.xml +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TextView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:minHeight="?android:attr/listPreferredItemHeight" - android:textAppearance="?android:attr/textAppearanceMedium" - android:paddingLeft="35dip" - android:gravity="center_vertical" - />
\ No newline at end of file diff --git a/res/layout/history_item.xml b/res/layout/history_item.xml deleted file mode 100644 index 50903a4..0000000 --- a/res/layout/history_item.xml +++ /dev/null @@ -1,65 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:minHeight="?android:attr/listPreferredItemHeight" - android:orientation="horizontal" - android:paddingRight="6dip" - android:paddingLeft="6dip" - android:paddingTop="5dip" - android:paddingBottom="5dip" - android:gravity="center_vertical" - > - <ImageView android:id="@+id/favicon" - android:layout_width="20dip" - android:layout_height="20dip" - android:layout_marginLeft="5dip" - android:layout_marginRight="11dip" - android:padding="2dip" - android:background="@drawable/fav_icn_background" - android:src="@drawable/app_web_browser_sm" - /> - <LinearLayout android:layout_width="0dip" - android:layout_weight="1" - android:layout_height="wrap_content" - android:orientation="vertical" - > - <TextView android:id="@+id/title" - android:textAppearance="?android:attr/textAppearanceMedium" - android:maxLines="1" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:singleLine="true" - android:ellipsize="end" - /> - <TextView android:id="@+id/url" - android:textAppearance="?android:attr/textAppearanceSmall" - android:maxLines="1" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:singleLine="true" - android:ellipsize="end" - /> - </LinearLayout> - <CheckBox android:id="@+id/star" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:focusable="false" - android:button="@android:drawable/btn_star" - /> -</LinearLayout> diff --git a/res/layout/http_authentication.xml b/res/layout/http_authentication.xml deleted file mode 100644 index 01cd3af..0000000 --- a/res/layout/http_authentication.xml +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:gravity="center_horizontal" - android:orientation="vertical"> - - <TextView - android:id="@+id/username_view" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="18sp" - android:textColor="@color/username_text" - android:text="@string/username" - android:gravity="left" - android:layout_marginTop="12dip" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <EditText - android:id="@+id/username_edit" - android:textSize="18sp" - android:textColor="@color/username_edit" - android:scrollHorizontally="true" - android:inputType="text" - android:gravity="fill_horizontal" - android:layout_weight="1" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - - <TextView - android:id="@+id/password_view" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="18sp" - android:textColor="@color/password_text" - android:text="@string/password" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <EditText - android:id="@+id/password_edit" - android:textSize="18sp" - android:textColor="@color/password_edit" - android:scrollHorizontally="true" - android:inputType="textPassword" - android:gravity="fill_horizontal" - android:layout_weight="1" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> -</TableLayout> diff --git a/res/layout/no_downloads.xml b/res/layout/no_downloads.xml deleted file mode 100644 index 1c1e1cd..0000000 --- a/res/layout/no_downloads.xml +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TextView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:text="@string/no_downloads" - android:background="@color/black" - android:textColor="@color/white" - android:gravity="center" - android:textStyle="bold" - /> diff --git a/res/layout/page_info.xml b/res/layout/page_info.xml deleted file mode 100644 index ee45082..0000000 --- a/res/layout/page_info.xml +++ /dev/null @@ -1,74 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<ScrollView - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" > - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" > - - <!-- Title: --> - <TextView - android:id="@+id/title" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textStyle="bold" - android:textSize="14sp" - android:textColor="@color/white" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginTop="12dip" - android:layout_marginBottom="12dip" /> - - <!-- Address: --> - <TableLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <TextView - android:id="@+id/address_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/page_info_address" - android:textSize="14sp" - android:textColor="@color/white" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <TextView - android:id="@+id/address" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/white" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - - </TableLayout> - - </LinearLayout> - -</ScrollView> diff --git a/res/layout/ssl_certificate.xml b/res/layout/ssl_certificate.xml deleted file mode 100644 index 9f9bbf1..0000000 --- a/res/layout/ssl_certificate.xml +++ /dev/null @@ -1,280 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<ScrollView - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" > - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" > - - <!-- Placeholder for the success message or one or more warnings --> - <LinearLayout - android:id="@+id/placeholder" - android:layout_height="wrap_content" - android:layout_width="fill_parent" - android:layout_marginTop="12dip" - android:orientation="vertical" /> - - <!-- Dialog-title line separator --> - <ImageView - android:id="@+id/title_separator" - android:src="@android:drawable/divider_horizontal_dark" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:scaleType="fitXY" - android:layout_weight="1" - android:gravity="fill_horizontal" - android:layout_marginRight="20dip" - android:layout_marginLeft="20dip" - android:layout_marginBottom="12dip" /> - - <TableLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <!-- Issued to: --> - <TextView - android:id="@+id/issued_to_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/issued_to" - android:textStyle="bold" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Common name: --> - <TextView - android:id="@+id/to_common_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/common_name" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/to_common" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Organization: --> - <TextView - android:id="@+id/to_org_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/org_name" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/to_org" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Organizational unit: --> - <TextView - android:id="@+id/to_org_unit_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/org_unit" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/to_org_unit" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - - <!-- Issued by: --> - <TextView - android:id="@+id/issued_to_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/issued_by" - android:textStyle="bold" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Common name: --> - <TextView - android:id="@+id/by_common_header" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/common_name" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/by_common" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Organization: --> - <TextView - android:id="@+id/by_org_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/org_name" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/by_org" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Organizational unit: --> - <TextView - android:id="@+id/by_org_unit_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/org_unit" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/by_org_unit" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - - <!-- Validity Dates: --> - <TextView - android:id="@+id/validity_header" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:text="@string/validity_period" - android:textStyle="bold" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Issued On: --> - <TextView - android:id="@+id/issued_on_header" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/issued_on" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/issued_on" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="10dip" /> - - <!-- Expires On: --> - <TextView - android:id="@+id/expires_on_header" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/expires_on" - android:textSize="14sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" /> - - <TextView - android:id="@+id/expires_on" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="14sp" - android:textColor="@color/ssl_text_value" - android:gravity="left" - android:layout_marginLeft="20dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - - </TableLayout> - - </LinearLayout> - -</ScrollView> diff --git a/res/layout/ssl_success.xml b/res/layout/ssl_success.xml deleted file mode 100644 index dad654a..0000000 --- a/res/layout/ssl_success.xml +++ /dev/null @@ -1,44 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="horizontal" > - - <TableRow> - <ImageView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:scaleType="center" - android:src="@drawable/ic_dialog_browser_security_good" - android:layout_marginLeft="20dip" - android:layout_marginBottom="12dip" /> - - <TextView - android:id="@+id/success" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:gravity="left" - android:layout_weight="1" - android:textSize="18sp" - android:textColor="@color/ssl_text_label" - android:layout_marginLeft="10dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - </TableRow> - -</TableLayout> diff --git a/res/layout/ssl_warning.xml b/res/layout/ssl_warning.xml deleted file mode 100644 index 8bc406a..0000000 --- a/res/layout/ssl_warning.xml +++ /dev/null @@ -1,41 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2007 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:shrinkColumns="1" - android:orientation="horizontal" > - - <TableRow> - <ImageView - android:scaleType="center" - android:src="@drawable/ic_dialog_browser_security_bad" - android:layout_marginLeft="20dip" - android:layout_marginBottom="12dip" /> - - <TextView - android:id="@+id/warning" - android:gravity="left" - android:layout_weight="1" - android:textSize="18sp" - android:textColor="@color/ssl_text_label" - android:layout_marginLeft="10dip" - android:layout_marginRight="20dip" - android:layout_marginBottom="12dip" /> - </TableRow> - -</TableLayout> diff --git a/res/layout/ssl_warnings.xml b/res/layout/ssl_warnings.xml deleted file mode 100644 index 5a02d97..0000000 --- a/res/layout/ssl_warnings.xml +++ /dev/null @@ -1,51 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<ScrollView - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <LinearLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <!-- Warnings header --> - <TextView - android:id="@+id/warnings_header" - android:layout_height="wrap_content" - android:layout_width="fill_parent" - android:textSize="18sp" - android:textColor="@color/ssl_text_label" - android:gravity="left" - android:text="@string/ssl_warnings_header" - android:layout_marginRight="20dip" - android:layout_marginLeft="20dip" - android:layout_marginTop="12dip" /> - - <!-- Placeholder for one or more warnings --> - <LinearLayout - android:id="@+id/placeholder" - android:layout_height="wrap_content" - android:layout_width="fill_parent" - android:layout_marginTop="12dip" - android:orientation="vertical" /> - - </LinearLayout> - -</ScrollView> diff --git a/res/layout/tabitem.xml b/res/layout/tabitem.xml deleted file mode 100644 index 9c82972..0000000 --- a/res/layout/tabitem.xml +++ /dev/null @@ -1,53 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2008 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:orientation="vertical" - android:padding="4dip" - android:background="@color/white"> - - <com.android.browser.FakeWebView android:id="@+id/icon" - android:background="@color/black" - android:layout_width="fill_parent" - android:layout_height="fill_parent" /> - - <TextView android:id="@+id/label" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_gravity="bottom" - android:textAppearance="?android:attr/textAppearanceMedium" - android:textColor="@color/white" - android:maxLines="1" - android:paddingTop="3dip" - android:paddingBottom="3dip" - android:paddingLeft="2dip" - android:paddingRight="2dip" - android:scrollHorizontally="true" - android:background="#CC000000"/> - - <ImageView android:id="@+id/close" - android:focusable="false" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="bottom|right" - android:paddingTop="14dip" - android:paddingBottom="12dip" - android:paddingLeft="12dip" - android:paddingRight="12dip" - android:src="@android:drawable/btn_dialog" /> - -</FrameLayout> diff --git a/res/layout/tabs.xml b/res/layout/tabs.xml deleted file mode 100644 index 7cf5b5d..0000000 --- a/res/layout/tabs.xml +++ /dev/null @@ -1,41 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2009 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<TabHost xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@android:id/tabhost" - android:layout_width="fill_parent" - android:layout_height="fill_parent"> - - <LinearLayout - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="fill_parent"> - - <TabWidget android:id="@android:id/tabs" - android:layout_width="fill_parent" - android:layout_height="68dip" - android:paddingLeft="1dip" - android:paddingRight="1dip" - android:paddingTop="4dip" - /> - - <FrameLayout android:id="@android:id/tabcontent" - android:layout_width="fill_parent" - android:layout_height="0dip" - android:layout_weight="1" - /> - </LinearLayout> -</TabHost>
\ No newline at end of file |