2012-04-12 19:44:00 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-09-11 15:27:32 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-09-07 16:54:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:orientation="vertical">
|
2012-09-11 15:27:32 +02:00
|
|
|
|
2014-09-07 16:54:39 +02:00
|
|
|
<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"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/input">
|
2012-09-11 15:27:32 +02:00
|
|
|
|
2014-09-07 16:54:39 +02:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/label_unlock"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
style="?android:attr/progressBarStyleSmall"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
2012-09-11 15:27:32 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|