mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Move non translatable strings to dedicated file Move Activity constant integers to LinphoneActivity to avoid duplicates Finish Incall activity if called number triggers an error Simplify PreferenceActivity
21 lines
No EOL
1.1 KiB
XML
21 lines
No EOL
1.1 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">
|
|
|
|
<TextView a:text="@string/first_login_explanation" a:layout_width="fill_parent" a:layout_height="wrap_content" a:layout_marginBottom="20px"/>
|
|
|
|
<LinearLayout a:layout_width="fill_parent" a:layout_height="wrap_content">
|
|
<TextView a:text="@string/first_login_username" a:layout_width="wrap_content" a:layout_height="wrap_content" />
|
|
<EditText a:id="@+id/login" a:layout_width="fill_parent" a:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout a:layout_width="fill_parent" a:layout_height="wrap_content">
|
|
<TextView a:text="@string/first_login_password" a:layout_width="wrap_content" a:layout_height="wrap_content"/>
|
|
<EditText a:id="@+id/password" a:password="true" a:layout_width="fill_parent" a:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<Button a:id="@+id/connect" a:text="@string/first_login_connect" a:layout_width="fill_parent" a:layout_height="wrap_content" a:layout_marginTop="20px"/>
|
|
|
|
// Some moving widget
|
|
|
|
</LinearLayout> |