You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
5 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
5 years ago
|
android:layout_height="match_parent">
|
||
5 years ago
|
|
||
5 years ago
|
<androidx.recyclerview.widget.RecyclerView
|
||
5 years ago
|
android:id="@+id/recyclerView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
<LinearLayout
|
||
5 years ago
|
android:id="@+id/emptyStateContainer"
|
||
5 years ago
|
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"
|
||
5 years ago
|
android:text="@string/activity_linked_devices_empty_state_message" />
|
||
5 years ago
|
|
||
|
<Button
|
||
5 years ago
|
style="@style/Widget.Session.Button.Common.ProminentOutline"
|
||
5 years ago
|
android:id="@+id/linkDeviceButton"
|
||
5 years ago
|
android:layout_width="196dp"
|
||
5 years ago
|
android:layout_height="@dimen/medium_button_height"
|
||
|
android:layout_marginTop="@dimen/medium_spacing"
|
||
5 years ago
|
android:text="@string/activity_linked_devices_empty_state_button_title" />
|
||
5 years ago
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</RelativeLayout>
|