linphone-android/res/layout/first_login_view.xml
Guillaume Beraudo 833668d180 Add first start activity
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
2011-02-28 16:19:52 +01:00

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>