activity_photo_proof.xml
3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/whitecolor"
tools:context=".activities.sidemenu.Photoproof">
<RelativeLayout
android:id="@+id/rl_toollayout"
android:layout_width="match_parent"
android:layout_height="@dimen/fifty_height"
android:orientation="horizontal">
<ImageView
android:id="@+id/cross_icon"
android:layout_width="@dimen/forty_width"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_marginEnd="@dimen/layout_marginEnd_five"
android:padding="@dimen/padding_eight"
android:src="@drawable/icon_cross"
android:tint="@color/blackcolor" />
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/rl_toollayout"
android:scrollbarThumbVertical="@color/transparent"
android:scrollbars="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/twoHundred_twenty_height"
android:orientation="horizontal"
android:padding="@dimen/padding_six">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/bg" />
<TextView
android:id="@+id/firstname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/layout_marginTop_five"
android:text="@string/cheese_txt_photo"
android:textColor="@color/red"
android:textSize="@dimen/twentyText_size" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/firstname"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/layout_margintop_two"
android:text="@string/taken_txt_photo"
android:textColor="@color/red"
android:textSize="@dimen/sixteenText_size" />
</RelativeLayout>
<ImageView
android:id="@+id/download_Img"
android:layout_width="@dimen/fifty_width"
android:layout_height="@dimen/fifty_height"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/layout_marginTop_ten"
android:padding="@dimen/padding_two"
android:rotation="180"
android:src="@drawable/icon_upload"
android:tint="@color/blackcolor" />
</LinearLayout>
</ScrollView>
</RelativeLayout>