blob: 64098228a8010baa3efb1bba895db0522f8816be [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
Amith Yamasani57acae32010-12-17 12:08:43 -08003/*
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08004**
5** Copyright 2006, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
Amith Yamasani57acae32010-12-17 12:08:43 -080020<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
21 android:layout_width="match_parent"
22 android:layout_height="match_parent" >
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080023
Amith Yamasani57acae32010-12-17 12:08:43 -080024 <LinearLayout
25 android:orientation="vertical"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070026 android:paddingStart="6dip"
27 android:paddingEnd="6dip"
Amith Yamasani57acae32010-12-17 12:08:43 -080028 android:paddingBottom="3dip"
Romain Guy33787152010-01-08 15:07:10 -080029 android:layout_width="match_parent" android:layout_height="wrap_content"
Amith Yamasani57acae32010-12-17 12:08:43 -080030 android:scrollbars="vertical" >
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080031
Amith Yamasani57acae32010-12-17 12:08:43 -080032 <TextView
33 android:textStyle="bold"
34 android:maxLines="1"
35 android:layout_marginTop="8dip"
36 android:layout_width="wrap_content" android:layout_height="wrap_content"
37 android:text="@string/proxy_hostname_label" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080038
Amith Yamasani57acae32010-12-17 12:08:43 -080039 <EditText android:id="@+id/hostname"
40 android:maxLines="1"
41 android:layout_marginTop="2dip"
42 android:layout_width="match_parent" android:layout_height="wrap_content"
43 android:autoText="false"
44 android:capitalize="none"
45 android:scrollHorizontally="true" />
Oscar Montemayor05411892010-08-03 16:56:09 -070046
Amith Yamasani57acae32010-12-17 12:08:43 -080047 <TextView
48 android:textStyle="bold"
49 android:maxLines="1"
50 android:layout_marginTop="4dip"
51 android:layout_width="wrap_content" android:layout_height="wrap_content"
52 android:text="@string/proxy_port_label" />
Oscar Montemayor05411892010-08-03 16:56:09 -070053
Amith Yamasani57acae32010-12-17 12:08:43 -080054 <EditText android:id="@+id/port"
55 android:numeric="integer"
56 android:maxLines="1"
57 android:layout_marginTop="2dip"
58 android:layout_width="match_parent" android:layout_height="wrap_content"
59 android:scrollHorizontally="true" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080060
Amith Yamasani57acae32010-12-17 12:08:43 -080061 <TextView
62 android:textStyle="bold"
63 android:maxLines="1"
64 android:layout_marginTop="4dip"
65 android:layout_width="wrap_content" android:layout_height="wrap_content"
66 android:text="@string/proxy_exclusionlist_label" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080067
Amith Yamasani57acae32010-12-17 12:08:43 -080068 <EditText android:id="@+id/exclusionlist"
69 android:maxLines="1"
70 android:layout_marginTop="2dip"
71 android:layout_width="match_parent" android:layout_height="wrap_content"
72 android:autoText="false"
73 android:capitalize="none"
74 android:singleLine="true"
75 android:scrollHorizontally="true" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080076
Amith Yamasani57acae32010-12-17 12:08:43 -080077 <LinearLayout
78 android:orientation="horizontal"
79 android:paddingTop="8dip"
80 android:layout_width="wrap_content" android:layout_height="wrap_content">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080081
Amith Yamasani57acae32010-12-17 12:08:43 -080082 <Button android:id="@+id/action"
83 android:layout_width="wrap_content" android:layout_height="match_parent"
84 android:layout_weight="1"
85 android:text="@string/proxy_action_text" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080086
Amith Yamasani57acae32010-12-17 12:08:43 -080087 <Button android:id="@+id/clear"
88 android:layout_width="wrap_content" android:layout_height="match_parent"
89 android:layout_weight="1"
90 android:text="@string/proxy_clear_text" />
91
92 <Button android:id="@+id/defaultView"
93 android:layout_width="wrap_content" android:layout_height="match_parent"
94 android:layout_weight="1"
95 android:text="@string/proxy_defaultView_text" />
96
97 </LinearLayout>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080098 </LinearLayout>
Amith Yamasani57acae32010-12-17 12:08:43 -080099</ScrollView>