2020-01-08 04:16:34 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/default_session_background"
2020-01-09 00:35:43 +00:00
android:gravity="center_horizontal"
2020-01-08 04:16:34 +00:00
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginRight="@dimen/large_spacing"
2020-03-25 00:46:52 +00:00
android:textSize="19sp"
2020-01-08 04:16:34 +00:00
android:textStyle="bold"
android:textColor="@color/text"
android:text="Link your device" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
2020-05-18 00:47:28 +00:00
android:layout_marginTop="4dp"
2020-01-08 04:16:34 +00:00
android:layout_marginRight="@dimen/large_spacing"
2020-03-25 00:46:52 +00:00
android:textSize="14sp"
2020-01-08 04:16:34 +00:00
android:textColor="@color/text"
2020-03-25 00:36:53 +00:00
android:text="Navigate to " Settings" > " Devices" > " Link a Device" on your other device and then enter your Session ID here to start the linking process." />
2020-01-08 04:16:34 +00:00
<EditText
2020-01-13 23:08:39 +00:00
style="@style/SmallSessionEditText"
2020-01-08 04:16:34 +00:00
android:id="@+id/sessionIDEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
2020-05-18 00:47:28 +00:00
android:layout_marginTop="10dp"
2020-01-08 04:16:34 +00:00
android:layout_marginRight="@dimen/large_spacing"
android:hint="Enter your session ID" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<Button
style="@style/MediumProminentOutlineButton"
android:id="@+id/requestDeviceLinkButton"
2020-01-09 00:35:43 +00:00
android:layout_width="196dp"
2020-01-08 04:16:34 +00:00
android:layout_height="@dimen/medium_button_height"
2020-01-13 23:08:39 +00:00
android:layout_marginBottom="@dimen/small_spacing"
2020-01-08 04:16:34 +00:00
android:text="Next" />
</LinearLayout>