blob: cdf437e9c36d24f43714f4bfa4c5771b737fa608 [file] [log] [blame]
<?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">
<!-- 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>