mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
62 lines
2.0 KiB
XML
62 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/margin_activity_vertical"
|
|
android:paddingEnd="@dimen/margin_activity_horizontal"
|
|
android:paddingLeft="@dimen/margin_activity_horizontal"
|
|
android:paddingRight="@dimen/margin_activity_horizontal"
|
|
android:paddingStart="@dimen/margin_activity_horizontal"
|
|
android:paddingTop="@dimen/margin_activity_vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/yourNicknameView"
|
|
style="@style/BriarTextBody"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/your_nickname"
|
|
android:visibility="gone"/>
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/border_spinner"
|
|
android:layout_marginTop="@dimen/margin_medium"
|
|
android:spinnerMode="dropdown"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/margin_xlarge"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/bluetooth"/>
|
|
|
|
<TextView
|
|
android:id="@+id/faceToFaceView"
|
|
style="@style/BriarTextBody"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/margin_xlarge"
|
|
android:text="@string/face_to_face"/>
|
|
|
|
<Button
|
|
android:id="@+id/continueButton"
|
|
style="@style/BriarButton.Default"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="@dimen/margin_medium"
|
|
android:text="@string/continue_button"/>
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |