mirror of
https://invent.kde.org/network/kdeconnect-android.git
synced 2025-10-06 00:23:01 +02:00
58 lines
2.1 KiB
XML
58 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2019 Juan David Vega <jdvr.93@hotmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="org.kde.kdeconnect.UserInterface.TrustedNetworksActivity">
|
|
|
|
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/trusted_networks_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<CheckBox
|
|
android:text="@string/allow_all_networks_text"
|
|
android:layout_width="match_parent"
|
|
android:checked="true"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/trust_all_networks_checkBox"/>
|
|
|
|
<TextView
|
|
android:id="@+id/trusted_network_list_empty"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="100dp"
|
|
android:text="@string/empty_trusted_networks_list_text"
|
|
android:gravity="center" />
|
|
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
<Button
|
|
android:id="@android:id/button1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|