wxr
2023-04-11 cd70a2a8a2bdebf51259d8f39ed110a34b9be9e5
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:gesture-image="http://schemas.monkey.com/android"
    android:id="@+id/realplay_display_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/application_bg"
    android:orientation="vertical" >
 
     <RelativeLayout
         android:id="@+id/realplay_area"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent" >
         
         <SurfaceView
             android:id="@+id/realplay_wnd_sv"
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_centerInParent="true" />
         
         <FrameLayout
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:background="@color/transparent" >
           
           <com.videogo.widget.PagesGallery
               android:id="@+id/realplay_pages_gallery"
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
               android:spacing="0dp" />
    
        </FrameLayout> 
            
     </RelativeLayout>
 
     <RelativeLayout
         android:id="@+id/realplay_top_bar"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:background="@drawable/top_bar_bg" >
 
            <ImageButton
                android:id="@+id/realplay_back_btn"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerInParent="true"
                android:layout_centerVertical="true"
                android:layout_marginLeft="10dp"
                android:background="@drawable/backbtn_selector" />
 
        <TextView
            android:id="@+id/realplay_title_tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:gravity="center_vertical|center_horizontal"
            android:singleLine="true"
            android:textColor="@color/black"
            android:textSize="@dimen/title_text_size"
            android:textStyle="normal" />             
     </RelativeLayout>
        
     <RelativeLayout
         android:id="@+id/realplay_control_bar"
         android:layout_width="fill_parent"
         android:layout_height="50dp"
         android:layout_alignParentBottom="true"
         android:background="@drawable/control_bar_bg" 
         android:orientation="horizontal" >
     
         <RelativeLayout
             android:layout_width="50dp"
             android:layout_height="fill_parent"
             android:gravity="center|center_vertical"
             android:layout_alignParentLeft="true" >
 
          <ImageButton
             android:id="@+id/realplay_play_btn"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:background="@drawable/playbtn_selector"
             android:visibility="gone" />
          
         <ImageButton
             android:id="@+id/realplay_stop_btn"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:background="@drawable/stopbtn_selector" />
         </RelativeLayout>
     
     </RelativeLayout>
    
</RelativeLayout>