mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-12 18:11:57 +01:00
8fdb233ef0
Use snackbars to give early feedback to the user (colors are wrong now, waiting for a change in master). Removed hintTextView for good
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.ControlCenterv2"
|
|
tools:showIn="@layout/activity_controlcenterv2_app_bar_main">
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/no_items_bg"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:src="@drawable/gadgetbridge_img" />
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
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" />
|
|
|
|
</RelativeLayout>
|