mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 01:51:47 +00:00
This is a rebased version of !522, with the same key changes. * `PairingFragment` and `SystemVolumeFragment` are now written in Kotlin * A new `BaseFragment` defines a common 'binding' property for `AboutFragment`, `DeviceFragment`, `PairingFragment`, and `SystemVolumeFragment` * Calls in and out of `Intent`s and `Bundle`s for `Parcelable` values now go through `IntentCompat` and `BundleCompat`
17 lines
625 B
XML
17 lines
625 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2021 Art Pinch <leonardo906@mail.ru>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/audio_devices_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="@dimen/activity_horizontal_margin"
|
|
android:paddingVertical="@dimen/activity_vertical_margin" />
|