-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
72 lines (68 loc) · 2.94 KB
/
activity_main.xml
File metadata and controls
72 lines (68 loc) · 2.94 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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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="@drawable/background"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="∞"
android:fontFamily="@font/robottoregular"
android:textColor="#d4af37"
android:layout_marginTop="10dp"
android:textSize="70sp"
android:textAlignment="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:gravity="center_horizontal"
android:id="@+id/fun" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/logo4"
android:layout_marginTop="60dp"
android:id="@+id/mycaptain"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/fun" />
<androidx.appcompat.widget.AppCompatButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Call"
android:drawableLeft="@drawable/call2"
android:fontFamily="@font/robottoregular"
android:textColor="#d4af37"
android:padding="20dp"
android:background="@drawable/btshape"
android:textSize="40sp"
android:textStyle="bold"
android:layout_marginTop="30dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/mycaptain"
android:textAlignment="center"
android:gravity="center_horizontal"
android:id="@+id/call"/>
<androidx.appcompat.widget.AppCompatButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text"
android:padding="20dp"
android:background="@drawable/btshape"
android:text="Text"
android:drawableLeft="@drawable/sms"
android:fontFamily="@font/robottoregular"
android:textColor="#d4af37"
android:textSize="40sp"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginTop="50dp"
app:layout_constraintTop_toBottomOf="@id/call"
android:textAlignment="center"
android:gravity="center_horizontal" />
</androidx.constraintlayout.widget.ConstraintLayout>