• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3	android:layout_width="fill_parent"
4  	android:layout_height="wrap_content">
5
6	<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
7		android:layout_width="wrap_content"
8	  	android:layout_height="wrap_content"
9	  	android:layout_centerHorizontal="true"
10	  	>
11		<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
12			android:layout_width="wrap_content"
13		  	android:layout_height="wrap_content"
14		  	>
15			<View xmlns:android="http://schemas.android.com/apk/res/android"
16			    android:id="@+id/animation_background"
17			    android:background="@drawable/ui_bad_ending_rokudou_bg"
18			    android:layout_width="480dp"
19			    android:layout_height="500dp"
20			    android:adjustViewBounds="true"
21
22			    >
23			</View>
24		</FrameLayout>
25
26		<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
27		android:layout_width="wrap_content"
28	  	android:layout_height="wrap_content"
29	  	>
30			<View xmlns:android="http://schemas.android.com/apk/res/android"
31			    android:id="@+id/animation_sphere"
32			    android:background="@drawable/ui_bad_ending_rokudou_sphere"
33			    android:layout_width="480dp"
34			    android:layout_height="500dp"
35			    android:adjustViewBounds="true"
36
37			    >
38			</View>
39		</FrameLayout>
40
41		<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
42		android:layout_width="wrap_content"
43	  	android:layout_height="wrap_content"
44	  	>
45			<View xmlns:android="http://schemas.android.com/apk/res/android"
46			    android:id="@+id/animation_cliffs"
47			    android:background="@drawable/ui_bad_ending_rokudou_cliffs"
48			    android:layout_width="480dp"
49			    android:layout_height="500dp"
50			    android:adjustViewBounds="true"
51
52			    >
53			</View>
54		</FrameLayout>
55
56		<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
57		android:layout_width="wrap_content"
58	  	android:layout_height="wrap_content"
59	  	>
60			<View xmlns:android="http://schemas.android.com/apk/res/android"
61			    android:id="@+id/animation_rokudou"
62			    android:background="@drawable/ui_bad_ending_rokudou_rokudou"
63			    android:layout_width="480dp"
64			    android:layout_height="600dp"
65			    android:adjustViewBounds="true"
66
67			    >
68			</View>
69		</FrameLayout>
70
71		<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
72				android:layout_width="wrap_content"
73	  			android:layout_height="wrap_content">
74			<TextView android:id="@+id/game_over"
75					xmlns:android="http://schemas.android.com/apk/res/android"
76				    android:layout_width="160dp"
77				    android:layout_height="50dp"
78				    android:textSize = "20sp"
79				    android:textColor = "#FFFFFF"
80				    android:gravity = "center"
81				    android:layout_x="20dp"
82			        android:layout_y="20dp"
83			       	android:text="@string/game_over"
84			       	android:typeface = "serif"
85			       	android:background="@drawable/custom_toast_border"
86			       	android:padding = "10dp"
87			/>
88
89		</AbsoluteLayout>
90	</FrameLayout>
91</RelativeLayout>