-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainActivity.xml
More file actions
45 lines (42 loc) · 1.64 KB
/
Copy pathMainActivity.xml
File metadata and controls
45 lines (42 loc) · 1.64 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#00a67a"
android:theme="@style/AppTheme.NoActionBar"
tools:context="madsum.resume.Main3Activity">
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="MOVE IN!"
android:id="@+id/button"
android:textSize="20sp"
android:onClick="onClick"
android:background="@drawable/move_in_button_1"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:clickable="true"
android:textColor="#ffffff" />
<TextView
android:layout_width="fill_parent"
android:layout_height="75dp"
android:text="R\te\ts\tu\tM\tE"
android:id="@+id/textView13"
android:layout_above="@+id/button"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:gravity="center"
android:textSize="35sp"
android:layout_marginBottom="70dp"
android:textColor="#fbffffff" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView4"
android:background="@drawable/logo_high"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="133dp" />
</RelativeLayout>