diff options
author | Irfan Sheriff <isheriff@google.com> | 2010-02-08 10:46:30 -0800 |
---|---|---|
committer | Irfan Sheriff <isheriff@google.com> | 2010-03-04 14:34:52 -0800 |
commit | 65cff177222560f43b7da367c45ec425e86e9eec (patch) | |
tree | 8462db17fd2b2cf5619fb7ae9f263bba98f9f8dd /res/layout | |
parent | e688885673cfdf407379e8a7482299d3ad68a839 (diff) | |
download | packages_apps_Settings-65cff177222560f43b7da367c45ec425e86e9eec.zip packages_apps_Settings-65cff177222560f43b7da367c45ec425e86e9eec.tar.gz packages_apps_Settings-65cff177222560f43b7da367c45ec425e86e9eec.tar.bz2 |
Add AP support for tethering
First phase of the AP support in
UI and framework
Bug: 2421638
Change-Id: I0b6c31be5fe79bd4d33c292464d271b054754e8d
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/wifi_ap_dialog.xml | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/res/layout/wifi_ap_dialog.xml b/res/layout/wifi_ap_dialog.xml new file mode 100644 index 0000000..f9c35b1 --- /dev/null +++ b/res/layout/wifi_ap_dialog.xml @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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="300sp" + android:layout_height="wrap_content"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:padding="8dip" + android:orientation="vertical"> + + <LinearLayout android:id="@+id/info" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" /> + + <LinearLayout android:id="@+id/type" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:visibility="gone"> + + <TextView + style="?android:attr/textAppearanceSmallInverse" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="8dip" + android:text="@string/wifi_ssid" /> + + <EditText android:id="@+id/ssid" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:singleLine="true" + android:inputType="textNoSuggestions" /> + + <TextView + style="?android:attr/textAppearanceSmallInverse" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="8dip" + android:text="@string/wifi_security" /> + + <Spinner android:id="@+id/security" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:prompt="@string/wifi_security" + android:entries="@array/wifi_ap_security" /> + </LinearLayout> + + <LinearLayout android:id="@+id/fields" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:visibility="gone"> + + <TextView + style="?android:attr/textAppearanceSmallInverse" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="4dip" + android:text="@string/wifi_password" /> + + <EditText android:id="@+id/password" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:singleLine="true" + android:password="true" /> + + <CheckBox android:id="@+id/show_password" + style="?android:attr/textAppearanceSmallInverse" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/wifi_show_password" /> + </LinearLayout> + </LinearLayout> +</ScrollView> |