2020-01-09 04:52:40 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2020-08-21 05:06:39 +00:00
|
|
|
android:layout_height="match_parent">
|
2020-01-09 04:52:40 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2020-01-09 04:52:40 +00:00
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<LinearLayout
|
2020-01-17 00:38:30 +00:00
|
|
|
android:id="@+id/emptyStateContainer"
|
2020-01-09 04:52:40 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_centerInParent="true">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
android:textColor="@color/text"
|
2020-06-03 05:31:49 +00:00
|
|
|
android:text="@string/activity_linked_devices_empty_state_message" />
|
2020-01-09 04:52:40 +00:00
|
|
|
|
|
|
|
<Button
|
2020-08-24 06:46:12 +00:00
|
|
|
style="@style/Widget.Session.Button.Common.ProminentOutline"
|
2020-01-09 04:52:40 +00:00
|
|
|
android:id="@+id/linkDeviceButton"
|
2020-07-17 06:08:12 +00:00
|
|
|
android:layout_width="196dp"
|
2020-01-09 04:52:40 +00:00
|
|
|
android:layout_height="@dimen/medium_button_height"
|
|
|
|
android:layout_marginTop="@dimen/medium_spacing"
|
2020-06-03 05:31:49 +00:00
|
|
|
android:text="@string/activity_linked_devices_empty_state_button_title" />
|
2020-01-09 04:52:40 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|