huangcm
2025-08-25 f350412dc55c15118d0a7925d1071877498e5e24
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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      >
   <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         >
       <View xmlns:android="http://schemas.android.com/apk/res/android"
           android:id="@+id/animation_background"
           android:background="@drawable/ui_good_ending_background"
           android:layout_width="650dp"
           android:layout_height="320dp" 
           android:adjustViewBounds="true"
           
           >
       </View>
   </FrameLayout>
   
   <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      >
       <View xmlns:android="http://schemas.android.com/apk/res/android"
           android:id="@+id/animation_foreground"
           android:background="@drawable/ui_good_ending_foreground"
           android:layout_width="760dp"
           android:layout_height="320dp" 
           android:adjustViewBounds="true"
          
           >
       </View>
   </FrameLayout>
   
   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
           android:layout_width="fill_parent"
              android:layout_height="fill_parent">
       <TextView android:id="@+id/game_over" 
               xmlns:android="http://schemas.android.com/apk/res/android"
               android:layout_width="160dp"
               android:layout_height="70dp"
               android:textSize = "20sp"
               android:textColor = "#FFFFFF"
               android:gravity = "center"
               android:layout_alignParentRight="true" 
               android:layout_marginTop = "20dp"
               android:layout_marginRight = "20dp"
                  android:text="@string/thanks_for_playing"
                  android:typeface = "serif"
                  android:background="@drawable/custom_toast_border"
                  android:padding = "10dp"
       />
 
   </RelativeLayout>
   
</FrameLayout>