session-android/res/layout/fragment_enter_session_id.xml

58 lines
2.1 KiB
XML
Raw Normal View History

<?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"
android:gravity="center_horizontal"
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"
android:textStyle="bold"
android:textColor="@color/text"
2020-05-25 05:24:55 +00:00
android:text="@string/fragment_enter_session_id_title" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="2dp"
android:layout_marginRight="@dimen/large_spacing"
2020-03-25 00:46:52 +00:00
android:textSize="14sp"
android:textColor="@color/text"
2020-05-25 05:24:55 +00:00
android:text="@string/fragment_enter_session_id_explanation" />
<EditText
2020-01-13 23:08:39 +00:00
style="@style/SmallSessionEditText"
android:id="@+id/sessionIDEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="8dp"
android:layout_marginRight="@dimen/large_spacing"
2020-05-25 05:24:55 +00:00
android:hint="@string/fragment_enter_session_id_edit_text_hint" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<Button
style="@style/MediumProminentOutlineButton"
android:id="@+id/requestDeviceLinkButton"
android:layout_width="196dp"
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" />
</LinearLayout>