2014-02-04 22:58:29 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="8dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:text="@string/account_settings_jabber_id" />
|
2014-01-28 19:21:54 +01:00
|
|
|
|
2014-02-04 22:58:29 +01:00
|
|
|
|
2014-01-28 19:21:54 +01:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_jid"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
|
|
|
android:inputType="textEmailAddress"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:hint="@string/account_settings_example_jabber_id">
|
2014-01-28 19:21:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
</EditText>
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:text="@string/account_settings_password"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_password"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
|
|
|
android:inputType="textPassword"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:hint="@string/password"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:fontFamily="sans-serif" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/edit_account_register_new"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:text="@string/register_account"/>
|
2014-01-28 19:21:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:id="@+id/account_confirm_password_desc"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:text="@string/account_settings_confirm_password"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_password_confirm2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
|
|
|
android:inputType="textPassword"
|
2014-05-24 00:17:42 +02:00
|
|
|
android:hint="@string/confirm_password"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:visibility="gone"
|
|
|
|
android:fontFamily="sans-serif" />
|
|
|
|
|
|
|
|
</LinearLayout>
|