-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwinner.xml
More file actions
56 lines (50 loc) · 1.91 KB
/
winner.xml
File metadata and controls
56 lines (50 loc) · 1.91 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#006600" >
<ImageView
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="28dp"
android:layout_marginTop="18dp"
android:src="@drawable/pic1"
/>
<TextView
android:id="@+id/Text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageButton4"
android:layout_centerHorizontal="true"
android:layout_marginTop="93dp"
android:ems="10"
android:gravity="center"
android:textSize="30dp"
android:textColorHighlight="#fff000"
android:text="Player has Won!!!" />
<ImageView
android:id="@+id/imageButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageButton1"
android:layout_centerVertical="true"
android:src="@drawable/pic3" />
<ImageView
android:id="@+id/imageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageButton2"
android:layout_alignTop="@+id/imageButton3"
android:src="@drawable/pic4" />
<ImageView
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/imageButton1"
android:layout_marginRight="20dp"
android:src="@drawable/pic2" />
</RelativeLayout>