nextcloud-android/app/src/main/res/layout/accounts_layout.xml
Andy Scherzinger e3d57e7c42
Update SPDX header to reflect correct state
Resolves #12920

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-04-30 12:18:45 +02:00

25 lines
865 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
~ Nextcloud - Android Client
~
~ SPDX-FileCopyrightText: 2020 Joris Bodin <joris.bodin@infomaniak.com>
~ SPDX-FileCopyrightText: 2019 Nick Antoniou <nikolasea@windowslive.com>
~ SPDX-FileCopyrightText: 2016 Andy Scherzinger <info@andy-scherzinger>
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
-->
<LinearLayout
android:id="@+id/account_list_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<include layout="@layout/toolbar_standard" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/account_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@null" />
</LinearLayout>