-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
67 lines (59 loc) · 2.1 KB
/
activity_main.xml
File metadata and controls
67 lines (59 loc) · 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
58
59
60
61
62
63
64
65
66
67
<?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"
tools:context=".MainActivity"
>
<Button
android:id="@+id/addbtn"
style="@style/BtnStyle"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_below="@id/imageView"
android:text="Add Job"
app:cornerRadius="0dp"
android:layout_margin="0dp"/>
<Button
android:id="@+id/viewbtn"
style="@style/BtnStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/addbtn"
android:layout_centerHorizontal="true"
android:text="View Calendar"
app:cornerRadius="0dp"/>
<Button
android:id="@+id/settings"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Settings"
android:layout_centerHorizontal="true"
android:layout_below="@id/viewbtn"
style="@style/BtnStyle"
app:cornerRadius="0dp"
/>
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:text="Job Application Tracker"
android:textAlignment="center"
style="@style/HeaderStyle"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight="1"
android:orientation="horizontal"
android:gravity="center"
android:background="#FDDD"
android:id="@+id/adView"
android:layout_alignParentBottom="true"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/img_0464"
android:layout_below="@id/title"
android:layout_centerHorizontal="true"/>
</RelativeLayout>