mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 01:35:00 -05:00
24 lines
828 B
XML
24 lines
828 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp" >
|
|
|
|
<TextView
|
|
android:id="@+id/passphrase_label_passphrase"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:padding="4dp"
|
|
android:text="@string/label_passphrase" />
|
|
|
|
<EditText
|
|
android:id="@+id/passphrase_passphrase"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="textPassword"
|
|
android:padding="4dp" />
|
|
|
|
</LinearLayout> |