<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2018 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. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="4dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:text="Wifi:" /> <Button android:id="@+id/startWifi" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" android:text="Start" /> <Button android:id="@+id/stopWifi" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:text="Stop" /> <TextView android:id="@+id/wifiStatusPolled" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="4dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:text="Tethering:" /> <Button android:id="@+id/startTethering" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" android:text="Start" /> <Button android:id="@+id/stopTethering" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:text="Stop" /> <TextView android:id="@+id/tetheringStatus" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" /> <TextView android:id="@+id/tetheringStatusPolled" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="4dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:text="LocalOnly:" /> <Button android:id="@+id/startLocalOnly" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" android:text="Start" /> <Button android:id="@+id/stopLocalOnly" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:text="Stop" /> <TextView android:id="@+id/localOnlyStatus" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> <!-- List(s) of networks (right now only have view all, may do a search UI) --> <LinearLayout android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <!-- Header for table --> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="4dp" android:background="#3C3F41" android:weightSum="12"> <TextView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:textSize="32sp" android:textColor="#d4d4d4" android:textStyle="bold" android:text="Net ID"> </TextView> <TextView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="9" android:textSize="32sp" android:textColor="#d4d4d4" android:textStyle="bold" android:text="Details"> </TextView> <TextView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2" android:textSize="32sp" android:textColor="#d4d4d4" android:textStyle="bold" android:text="Functions"> </TextView> </LinearLayout> <!-- Wrapped list view to implement swipe to refresh --> <androidx.swiperefreshlayout.widget.SwipeRefreshLayout android:id="@+id/refreshNetworksList" android:layout_width="match_parent" android:layout_height="wrap_content"> <!-- Filled in code with network_item.xml --> <ListView android:id="@+id/networks" android:layout_width="match_parent" android:layout_height="wrap_content"> </ListView> </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="4dp"> <Button android:id="@+id/networkEnableWifiIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Enable Wifi Intent"/> <Button android:id="@+id/networkDisableWifiIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Disable Wifi Intent"/> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="4dp"> <Button android:id="@+id/networkEnableBluetoothIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Enable Bluetooth Intent"/> <Button android:id="@+id/networkDisableBluetoothIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Disable Bluetooth Intent"/> <Button android:id="@+id/networkDiscoverableBluetoothIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Discoverable Bluetooth Intent"/> </LinearLayout> </LinearLayout>