mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-24 07:08:09 +00:00
33 lines
No EOL
1.5 KiB
XML
33 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
a:layout_width="fill_parent" a:layout_height="fill_parent" a:orientation="vertical">
|
|
|
|
|
|
<EditText a:id="@+id/login"
|
|
a:hint="@string/first_login_username"
|
|
a:layout_width="wrap_content" a:layout_height="wrap_content"
|
|
a:layout_marginTop="20sp" a:layout_marginRight="15sp" a:layout_gravity="right"
|
|
a:width="180sp"/>
|
|
|
|
<EditText a:id="@+id/password" a:password="true"
|
|
a:hint="@string/first_login_password"
|
|
a:layout_width="wrap_content" a:layout_height="wrap_content"
|
|
a:layout_marginTop="10sp" a:layout_marginRight="15sp" a:layout_gravity="right"
|
|
a:width="180sp"/>
|
|
|
|
<Button a:id="@+id/connect" a:text="@string/first_login_connect"
|
|
a:layout_width="wrap_content" a:layout_height="wrap_content"
|
|
a:layout_marginTop="20sp" a:layout_marginRight="15sp" a:layout_gravity="right"
|
|
a:width="180sp"/>
|
|
|
|
<View a:layout_width="wrap_content" a:layout_height="wrap_content" a:layout_weight="1" />
|
|
|
|
<ProgressBar a:id="@+id/progress_bar"
|
|
a:layout_width="wrap_content" a:layout_height="wrap_content"
|
|
a:layout_gravity="center|bottom" a:layout_marginTop="50sp"
|
|
/>
|
|
|
|
<View a:layout_width="wrap_content" a:layout_height="wrap_content" a:layout_weight="1" />
|
|
|
|
|
|
</LinearLayout> |