2016-10-21 13:01:30 +02:00
|
|
|
<?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" />
|
|
|
|
|
2016-10-24 17:41:56 +02:00
|
|
|
<android.support.v7.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" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|