fragment_authorization.xml
2.1 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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activity.fragments.AuthorizationFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
android:background="@drawable/mch_cricle_10dp_bg_white">
<LinearLayout
android:layout_width="290dp"
android:layout_height="320dp"
android:layout_weight="1"
android:orientation="vertical">
<RelativeLayout
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginLeft="105dp"
android:layout_marginRight="105dp"
android:layout_marginTop="40dp"
android:layout_marginBottom="15dp"
android:gravity="center">
<ImageView
android:id="@+id/image"
android:layout_width="80dp"
android:layout_height="80dp"
android:src="@drawable/logo"/>
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="12dp"
android:layout_marginBottom="15dp"
android:gravity="center">
<Button
android:id="@+id/btn_mc_platform_login"
android:layout_width="180dp"
android:layout_height="35dp"
android:background="@drawable/button1"
android:text=""
android:textColor="#fff"
android:textSize="14dp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</FrameLayout>