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
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/black" >
 
    <com.videogo.widget.TitleBar
        android:id="@+id/title_bar"
        style="@style/TitleBar_Dark"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
 
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <ImageView
        android:id="@+id/alarm_image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scaleType="centerInside"
        android:layout_centerVertical="true"
        />
    </RelativeLayout>
    <RelativeLayout
        android:id="@+id/bottom_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:background="@color/dark_bg_70p"
        android:paddingBottom="30dp"
        android:paddingLeft="15dp"
        android:paddingRight="15dp"
        android:paddingTop="10dp" >
 
        <TextView
            android:id="@+id/message_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:textColor="@android:color/white"
            android:textSize="15sp" />
 
        <TextView
            android:id="@+id/message_time"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/message_type"
            android:layout_marginTop="3dp"
            android:textColor="@color/common_sub_text"
            android:textSize="15sp" />
 
        <TextView
            android:id="@+id/message_from"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/message_time"
            android:layout_marginTop="3dp"
            android:textColor="@color/common_sub_text"
            android:textSize="15sp" />
 
        <Button
            android:id="@+id/video_button"
            android:layout_width="match_parent"
            android:layout_height="39dp"
            android:layout_below="@+id/message_from"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="20dp"
            android:background="@drawable/login_btn_selector"
            android:textColor="#ffffff"
            android:textSize="14sp"
            android:text="@string/message_video"
            />
    </RelativeLayout>
 
    <LinearLayout
        android:id="@+id/menu_layout"
        android:layout_width="wrap_content"
        android:layout_height="134dp"
        android:layout_gravity="top|right"
        android:layout_marginRight="2dp"
        android:layout_marginTop="37dp"
        android:background="@drawable/title_down_bg"
        android:gravity="center"
        android:minWidth="109.5dp"
        android:orientation="vertical"
        android:paddingTop="7dp"
        android:visibility="gone" >
 
        <TextView
            android:id="@+id/menu_play"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawableLeft="@drawable/title_down_play_selector"
            android:drawablePadding="2dp"
            android:gravity="center_vertical"
            android:paddingLeft="7dp"
            android:paddingRight="7dp"
            android:text="@string/realplay"
            android:textColor="@color/title_down_text_selector"
            android:textSize="15sp" />
    </LinearLayout>
 
</FrameLayout>