2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-07-22 09:44:01 +00:00
|
|
|
android:id="@+id/scroll_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-02-17 19:42:30 +00:00
|
|
|
android:fillViewport="true"
|
|
|
|
android:background="@drawable/background_pattern_repeat">
|
2012-07-31 00:15:49 +00:00
|
|
|
|
2014-07-22 09:44:01 +00:00
|
|
|
<RelativeLayout android:id="@+id/prompt_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2012-08-01 00:02:50 +00:00
|
|
|
|
2014-07-22 09:44:01 +00:00
|
|
|
<ImageView android:id="@+id/watermark"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="20dp"
|
2015-03-08 23:32:57 +00:00
|
|
|
android:src="@drawable/lockscreen_watermark_light"
|
2014-07-22 09:44:01 +00:00
|
|
|
android:contentDescription="@string/PassphrasePromptActivity_watermark_content_description"
|
|
|
|
android:layout_marginTop="100dp"/>
|
2014-01-08 00:27:00 +00:00
|
|
|
|
2014-07-22 09:44:01 +00:00
|
|
|
<RelativeLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/watermark">
|
2014-01-08 00:27:00 +00:00
|
|
|
|
2014-07-22 09:44:01 +00:00
|
|
|
<ProgressBar android:id="@+id/passphrase_edit"
|
|
|
|
android:layout_width="75dp"
|
|
|
|
android:layout_height="75dp"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:layout_centerHorizontal="true"/>
|
2014-01-08 00:27:00 +00:00
|
|
|
|
2014-07-22 09:44:01 +00:00
|
|
|
</RelativeLayout>
|
2012-08-01 00:02:50 +00:00
|
|
|
|
2014-07-22 09:44:01 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|