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 17:27:25 +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 17:27:25 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/input">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/passphrase_passphrase"
|
2014-09-07 16:54:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-09-07 17:27:25 +02:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:imeOptions="actionDone"
|
|
|
|
android:hint="@string/label_passphrase"
|
|
|
|
android:ems="10"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
style="?android:attr/progressBarStyle"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-09-07 16:54:39 +02:00
|
|
|
|
|
|
|
<TextView
|
2014-09-07 17:27:25 +02:00
|
|
|
style="?android:attr/textAppearanceMedium"
|
2014-09-07 16:54:39 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-09-07 17:27:25 +02:00
|
|
|
android:paddingLeft="8dp"
|
2014-09-07 16:54:39 +02:00
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/label_unlock"
|
2014-09-07 17:27:25 +02:00
|
|
|
android:layout_gravity="center_vertical" />
|
2014-09-07 16:54:39 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2012-09-11 15:27:32 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|