mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
bb0ec65744
This should help eliminate string duplicates, as well as provide visibility into where strings in a resource file are being used.
90 lines
3.4 KiB
XML
90 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="16dip"
|
|
android:paddingRight="16dip"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:padding="3dip"
|
|
android:text="@string/change_passphrase_activity__old_passphrase"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<EditText
|
|
android:id="@+id/old_passphrase"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textPassword"
|
|
android:layout_marginBottom="5dip" />
|
|
|
|
<TextView
|
|
android:padding="3dip"
|
|
android:text="@string/change_passphrase_activity__new_passphrase"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<EditText
|
|
android:id="@+id/new_passphrase"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textPassword"
|
|
android:layout_marginBottom="5dip" />
|
|
|
|
<TextView
|
|
android:padding="3dip"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/change_passphrase_activity__repeat_new_passphrase"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<EditText
|
|
android:id="@+id/repeat_passphrase"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textPassword"
|
|
android:layout_marginBottom="5dip" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="16dip"
|
|
android:gravity="right"
|
|
android:orientation="horizontal" >
|
|
|
|
<TableLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:stretchColumns="*"
|
|
tools:ignore="UselessParent" >
|
|
|
|
<TableRow>
|
|
|
|
<Button
|
|
android:id="@+id/cancel_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dip"
|
|
android:layout_marginRight="15dip"
|
|
android:text="@android:string/cancel" />
|
|
|
|
<Button
|
|
android:id="@+id/ok_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="16dip"
|
|
android:text="@android:string/ok" />
|
|
</TableRow>
|
|
</TableLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |