|
|
5
|
+ android:background="@color/background_light_grey_color">
|
|
|
6
|
+
|
|
|
7
|
+ <RelativeLayout
|
|
|
8
|
+ android:id="@+id/title_layout"
|
|
|
9
|
+ android:layout_width="match_parent"
|
|
|
10
|
+ android:layout_height="wrap_content"
|
|
|
11
|
+ android:background="@color/colorPrimaryDark">
|
|
|
12
|
+ <include layout="@layout/title_bar_with_back_and_option" />
|
|
|
13
|
+ </RelativeLayout>
|
|
|
14
|
+
|
|
|
15
|
+ <ImageView
|
|
|
16
|
+ android:id="@+id/image_encrypt"
|
|
|
17
|
+ android:layout_width="match_parent"
|
|
|
18
|
+ android:layout_height="300dp"
|
|
|
19
|
+ android:scaleType="centerInside"
|
|
|
20
|
+ android:layout_below="@id/title_layout"/>
|
|
|
21
|
+
|
|
|
22
|
+ <Button
|
|
|
23
|
+ android:id="@+id/btn_encrypt"
|
|
|
24
|
+ android:layout_width="100dp"
|
|
|
25
|
+ android:layout_height="48dp"
|
|
|
26
|
+ android:layout_alignParentBottom="true"
|
|
|
27
|
+ android:layout_marginBottom="60dp"
|
|
|
28
|
+ android:layout_centerHorizontal="true"
|
|
|
29
|
+ android:gravity="center"/>
|
|
|
30
|
+
|
|
|
31
|
+
|
|
|
32
|
+</RelativeLayout>
|