-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNaming stage 2
49 lines (43 loc) · 1.61 KB
/
Naming stage 2
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
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout 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/north_dakota_prairie_rick_bohn_usfws_header"
tools:context=".MainActivity">
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_x="5dp"
android:layout_y="98dp"
android:background="?android:attr/listDivider" />
<TextView
android:id="@+id/textView4"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_x="72dp"
android:layout_y="130dp"
android:fontFamily="casual"
android:text=" Who am I? "
android:textColor="#3F51B5"
android:textSize="36sp" />
<pl.droidsonroids.gif.GifImageView
android:layout_width="264dp"
android:layout_height="150dp"
android:layout_x="69dp"
android:layout_y="265dp"
android:background="@android:color/white"
android:src="@drawable/giphy" />
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView"
android:layout_width="155dp"
android:layout_height="wrap_content"
android:layout_x="90dp"
android:layout_y="514dp"
android:completionThreshold="3"
android:hint="Answer"
android:textSize="24sp"
tools:text="Answer" />
</AbsoluteLayout>