-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
60 lines (54 loc) · 2.89 KB
/
activity_main.xml
File metadata and controls
60 lines (54 loc) · 2.89 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
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/lapkiss"
tools:context="com.iomis.gogavproject.MainActivity">
<RelativeLayout
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:id="@+id/PlayButton"
android:drawableTop="@drawable/started"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_above="@+id/settingsButton" android:layout_centerHorizontal="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/buttonStop"
android:drawableTop="@drawable/off1"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_alignParentBottom="true" android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" android:layout_marginRight="22dp" android:layout_marginEnd="22dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/facts"
android:text="цікаві факти"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_alignTop="@+id/buttonStop" android:layout_centerHorizontal="true"
android:layout_marginTop="12dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/settingsButton"
android:drawableTop="@drawable/settings"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_alignParentBottom="true" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content" app:srcCompat="@drawable/dogal"
android:id="@+id/imageView4"
android:layout_above="@+id/PlayButton" android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" android:layout_marginBottom="13dp"/>
</RelativeLayout>
</android.support.constraint.ConstraintLayout>