74 lines
2.7 KiB
XML
74 lines
2.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
background="#ffffff"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="match_parent">
|
||
|
<LinearLayout
|
||
|
gravity="center_vertical"
|
||
|
orientation="vertical"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="match_parent"
|
||
|
layout_above="@+id/pin_lock_button_container"
|
||
|
layout_alignParentTop="true">
|
||
|
<ScrollView
|
||
|
layout_width="match_parent"
|
||
|
layout_height="match_parent">
|
||
|
<LinearLayout
|
||
|
layout_gravity="center"
|
||
|
orientation="vertical"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<ImageView
|
||
|
layout_gravity="center"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
src="@drawable/img_pin_lock"
|
||
|
contentDescription="@null"/>
|
||
|
<TextView
|
||
|
layout_gravity="center"
|
||
|
id="@+id/pin_lock_title"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginTop="32dp"
|
||
|
text="@string/pin_lock_header"
|
||
|
style="@style/2132017888"/>
|
||
|
<TextView
|
||
|
gravity="center"
|
||
|
id="@+id/pin_lock_description"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginTop="16dp"
|
||
|
text="@string/pin_lock_message"
|
||
|
paddingStart="24dp"
|
||
|
paddingEnd="24dp"
|
||
|
style="@style/2132017925"/>
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|
||
|
</LinearLayout>
|
||
|
<LinearLayout
|
||
|
orientation="vertical"
|
||
|
id="@+id/pin_lock_button_container"
|
||
|
paddingBottom="16dp"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_alignParentBottom="true">
|
||
|
<Button
|
||
|
id="@+id/unlock_pin_button"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_margin="16dp"
|
||
|
text="@string/pin_lock_button"
|
||
|
style="@style/2132017576"/>
|
||
|
<Button
|
||
|
id="@+id/button_personal_profile"
|
||
|
visibility="gone"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginBottom="16dp"
|
||
|
text="@string/switch_to_personal_profile"
|
||
|
layout_marginStart="16dp"
|
||
|
layout_marginEnd="16dp"
|
||
|
style="@style/2132017536"/>
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|