forked from sambitmanna/Sambit-Manna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
58 lines (51 loc) · 2.29 KB
/
activity_main.xml
File metadata and controls
58 lines (51 loc) · 2.29 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
android:background="@drawable/hospital"
tools:context=".MainActivity">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
app:cardCornerRadius="30dp"
app:cardElevation="20dp"
android:background="@drawable/custom_edittext">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center_horizontal"
android:padding="24dp">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New user "
tools:layout_editor_absoluteX="192dp"
tools:layout_editor_absoluteY="216dp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Already a user "
tools:layout_editor_absoluteX="192dp"
tools:layout_editor_absoluteY="275dp" />
</LinearLayout>
</androidx.cardview.widget.CardView>
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#FF0000"
android:text="ABOUT:
This app tracks your heart beat, body temperature,spO2 levels and respiration rate.
Heart Rate/Pulse Rate is measured in beats per minute.It detects the number of heart beat in a minute , Body temperature is measured in degree Fahrenheit,
spO2 levels indicates the amount of oxygen on the haemoglobin in your blood.The respiration rate determines the number of breadths you take in a minute " />
</LinearLayout>