2020-06-05 20:54:44 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
2024-04-07 15:17:38 +03:00
|
|
|
~ Nextcloud - Android Client
|
|
|
|
~
|
|
|
|
~ SPDX-FileCopyrightText: 2019 Tobias Kaminsky <tobias@kaminsky.me>
|
|
|
|
~ SPDX-FileCopyrightText: 2019 Nextcloud GmbH
|
2024-04-30 13:16:39 +03:00
|
|
|
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
2019-08-22 17:27:34 +03:00
|
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-06-05 16:59:05 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-08-22 17:27:34 +03:00
|
|
|
android:gravity="clip_horizontal"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/standard_padding">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="match_parent"
|
2020-06-05 16:59:05 +03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:listitem="@layout/account_item" />
|
2019-08-22 17:27:34 +03:00
|
|
|
</LinearLayout>
|