2016-10-21 13:01:30 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-04-08 22:23:34 +02:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-21 13:01:30 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/content_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
2024-04-04 21:28:04 +02:00
|
|
|
tools:context=".activities.DevicesFragment">
|
2016-10-21 13:01:30 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/no_items_bg"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
2018-08-01 21:52:35 +02:00
|
|
|
android:alpha="0.1"
|
|
|
|
app:srcCompat="@drawable/gadgetbridge_img" />
|
2016-10-21 13:01:30 +02:00
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2016-10-21 13:01:30 +02:00
|
|
|
android:id="@+id/deviceListView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:divider="@null" />
|
|
|
|
|
2024-04-04 21:28:04 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
app:srcCompat="@drawable/ic_add"
|
|
|
|
android:layout_margin="16dp" />
|
|
|
|
|
2016-10-21 13:01:30 +02:00
|
|
|
</RelativeLayout>
|