mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
110 lines
3.2 KiB
XML
110 lines
3.2 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:id="@+id/topbar"
|
|
android:background="@color/colorF"
|
|
android:orientation="horizontal"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp">
|
|
|
|
<TextView
|
|
android:text="@string/assistant"
|
|
style="@style/font1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
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
|
|
android:id="@+id/purchasable_items"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="40dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|