mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
88 lines
2.6 KiB
XML
88 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/colorH"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="30dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/username_label"
|
|
android:text="@string/username"
|
|
style="@style/font13"
|
|
android:textAllCaps="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<EditText
|
|
android:id="@+id/username"
|
|
android:background="@drawable/resizable_textfield"
|
|
android:textColor="@color/colorB"
|
|
android:contentDescription="@string/content_description_username_field"
|
|
android:inputType="text|textEmailAddress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:singleLine="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/username_error"
|
|
android:text="@string/error"
|
|
style="@style/font20"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="invisible"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/email_label"
|
|
android:text="@string/email"
|
|
style="@style/font13"
|
|
android:textAllCaps="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<EditText
|
|
android:id="@+id/email"
|
|
android:background="@drawable/resizable_textfield"
|
|
android:textColor="@color/colorB"
|
|
android:inputType="text|textEmailAddress"
|
|
android:contentDescription="@string/content_description_email_field"
|
|
android:textCursorDrawable="@null"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:singleLine="true"/>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/inapp_button"
|
|
android:text="@string/assistant_create_account"
|
|
android:background="@drawable/assistant_button"
|
|
style="@style/font8"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:layout_gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="40dp"/>
|
|
|
|
</LinearLayout>
|