summaryrefslogtreecommitdiff
path: root/Defogger/res/layout/item_net.xml
blob: f3f8eb87c8d5499b52208d042fb90bceb1d9d559 (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
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
	      android:layout_width="match_parent"
	      android:layout_height="match_parent"
	      android:orientation="horizontal">
  <TableRow
      android:layout_width="match_parent"
      android:layout_height="match_parent">
  <TextView
      android:id="@+id/ssid"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
  <TextView
      android:id="@+id/channel"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
  <TextView
      android:id="@+id/key_mgmt"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
  <TextView
      android:id="@+id/proto"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
  <TextView
      android:id="@+id/rssi"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
  </TableRow>
</TableLayout>