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"
|
2020-05-25 05:24:55 +00:00
|
|
|
android:text="@string/fragment_enter_session_id_title" />
|
2020-01-08 04:16:34 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
2020-06-03 05:31:49 +00:00
|
|
|
android:layout_marginTop="2dp"
|
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-05-25 05:24:55 +00:00
|
|
|
android:text="@string/fragment_enter_session_id_explanation" />
|
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-06-03 05:31:49 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2020-01-08 04:16:34 +00:00
|
|
|
android:layout_marginRight="@dimen/large_spacing"
|
2020-05-25 05:24:55 +00:00
|
|
|
android:hint="@string/fragment_enter_session_id_edit_text_hint" />
|
2020-01-08 04:16:34 +00:00
|
|
|
|
|
|
|
<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-05-25 05:24:55 +00:00
|
|
|
android:text="@string/next" />
|
2020-01-08 04:16:34 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|