Warning, /network/kdeconnect-android/res/layout/trusted_network_list.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2019 Juan David Vega <jdvr.93@hotmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
0010     android:layout_width="match_parent"
0011     android:layout_height="match_parent"
0012     xmlns:app="http://schemas.android.com/apk/res-auto"
0013     xmlns:tools="http://schemas.android.com/tools"
0014     tools:context="org.kde.kdeconnect.UserInterface.TrustedNetworksActivity">
0015 
0016     <include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
0017 
0018     <LinearLayout
0019         android:id="@+id/trusted_networks_list"
0020         android:layout_width="match_parent"
0021         android:layout_height="match_parent"
0022         android:orientation="vertical"
0023         android:paddingBottom="@dimen/activity_vertical_margin"
0024         android:paddingLeft="@dimen/activity_horizontal_margin"
0025         android:paddingRight="@dimen/activity_horizontal_margin"
0026         android:paddingTop="@dimen/activity_vertical_margin"
0027         app:layout_behavior="@string/appbar_scrolling_view_behavior">
0028 
0029         <CheckBox
0030             android:text="@string/allow_all_networks_text"
0031             android:layout_width="match_parent"
0032             android:checked="true"
0033             android:layout_height="wrap_content"
0034             android:id="@+id/trust_all_networks_checkBox"/>
0035 
0036         <TextView
0037             android:id="@+id/trusted_network_list_empty"
0038             android:layout_width="fill_parent"
0039             android:layout_height="100dp"
0040             android:text="@string/empty_trusted_networks_list_text"
0041             android:gravity="center" />
0042 
0043         <ListView
0044             android:id="@android:id/list"
0045             android:layout_width="fill_parent"
0046             android:layout_height="0dp"
0047             android:layout_weight="1"/>
0048 
0049 
0050         <Button
0051             android:id="@android:id/button1"
0052             android:layout_width="fill_parent"
0053             android:layout_height="wrap_content"
0054             android:visibility="gone" />
0055 
0056     </LinearLayout>
0057 </androidx.coordinatorlayout.widget.CoordinatorLayout>