2011-12-20 10:20:44 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-23 13:42:29 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_width="fill_parent"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:fillViewport="true"
|
|
|
|
android:background="@drawable/background_pattern_repeat">
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="center" >
|
|
|
|
|
|
|
|
<LinearLayout android:paddingRight="16dip"
|
|
|
|
android:paddingLeft="16dip"
|
|
|
|
android:paddingTop="10dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView style="@style/Registration.Label"
|
2013-07-01 10:15:36 -07:00
|
|
|
android:id="@+id/old_passphrase_label"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:text="@string/change_passphrase_activity__old_passphrase" />
|
|
|
|
|
|
|
|
<EditText android:id="@+id/old_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_marginBottom="10dip"
|
|
|
|
android:singleLine="true"/>
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<TextView style="@style/Registration.Label"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:text="@string/change_passphrase_activity__new_passphrase" />
|
|
|
|
|
|
|
|
<EditText android:id="@+id/new_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:singleLine="true"/>
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<TextView style="@style/Registration.Label"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:text="@string/change_passphrase_activity__repeat_new_passphrase" />
|
|
|
|
|
|
|
|
<EditText android:id="@+id/repeat_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:singleLine="true"/>
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="30dip">
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-12-01 01:36:21 +02:00
|
|
|
<Button android:id="@+id/cancel_button"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:text="@android:string/cancel"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_height="wrap_content"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:layout_marginRight="7dip"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
|
2013-12-01 01:36:21 +02:00
|
|
|
<Button android:id="@+id/ok_button"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:text="@android:string/ok"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_height="wrap_content"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
</LinearLayout>
|
2012-09-09 16:10:46 -07:00
|
|
|
</LinearLayout>
|
2013-02-17 11:42:30 -08:00
|
|
|
</FrameLayout>
|
2012-09-09 16:10:46 -07:00
|
|
|
</ScrollView>
|