summaryrefslogtreecommitdiff
path: root/Defogger/res/layout/activity_configurenetwork.xml
blob: 15797b4e26625c8cf04af7648519e9d1e4e38bca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<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"/>
   <Button
       android:id="@+id/cancel"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:onClick="doCancel"
       android:text="Cancel"/>
   <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"
       android:choiceMode="singleChoice"
       android:listSelector="@color/list_view_selector"/>
</LinearLayout>