1<?xml version="1.0" encoding="utf-8"?>
2<merge xmlns:android="http://schemas.android.com/apk/res/android">
3    <!-- Spacer -->
4    <View
5            android:layout_width="wrap_content"
6            android:layout_height="wrap_content"
7            android:layout_weight="1"/>
8    <!-- The exact size of the wifi icon is specified in order to scale it properly.
9    Without scaling, it appeared huge. This is currently, 70% of the actual size. -->
10    <ImageView
11            android:layout_height="22.4dp"
12            android:layout_width="20.65dp"
13            android:layout_marginTop="1dp"/>
14    <ImageView
15            android:layout_height="wrap_content"
16            android:layout_width="wrap_content"
17            android:layout_marginLeft="3dp"
18            android:layout_marginRight="5dp"
19            android:layout_marginTop="4dp"/>
20    <TextView
21            android:layout_width="wrap_content"
22            android:layout_height="wrap_content"
23            android:layout_marginTop="4dp"
24            android:layout_marginRight="5dp"
25            android:gravity="center_vertical"
26            android:textSize="16dp"
27            android:fontFamily="sans-serif-medium"/>
28</merge>
29