summaryrefslogtreecommitdiff
path: root/Defogger/res/layout/activity_configurenetwork.xml
diff options
context:
space:
mode:
Diffstat (limited to 'Defogger/res/layout/activity_configurenetwork.xml')
-rw-r--r--Defogger/res/layout/activity_configurenetwork.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/Defogger/res/layout/activity_configurenetwork.xml b/Defogger/res/layout/activity_configurenetwork.xml
new file mode 100644
index 0000000..6158fff
--- /dev/null
+++ b/Defogger/res/layout/activity_configurenetwork.xml
@@ -0,0 +1,41 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+ <TextView
+ android:id="@+id/netstatus"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:layout_centerVertical="true" />
+ <Button
+ android:id="@+id/finish"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:onClick="doFinish"
+ android:text="Finished"/>
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Password:" />
+ <EditText
+ android:id="@+id/password"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:inputType="text"
+ android:imeOptions="actionNone" />
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Enter SSID or select from list:" />
+ <EditText
+ android:id="@+id/ssid"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:inputType="text"
+ android:imeOptions="actionNone" />
+ <ListView
+ android:id="@+id/networks"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+</LinearLayout>