wxr
2022-11-24 2af932533ef851bf983385244e9912976dbd4daa
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/px_30"
    android:background="@color/lc_demo_color_ffffff"
    android:orientation="vertical"
    android:paddingLeft="@dimen/px_30"
    android:paddingRight="@dimen/px_30"
    android:paddingBottom="@dimen/px_50">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:paddingTop="@dimen/px_30"
        android:paddingBottom="@dimen/px_30">
 
        <TextView
            android:id="@+id/tv_name"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textColor="@color/lc_demo_color_2c2c2c"
            android:textSize="@dimen/px_30"></TextView>
 
        <ImageView
            android:id="@+id/iv_detail"
            android:layout_width="@dimen/px_50"
            android:layout_height="@dimen/px_50"
            android:src="@mipmap/lc_demo_common_nav_settings_white_disable"></ImageView>
    </LinearLayout>
 
    <FrameLayout
        android:id="@+id/fr_detail"
        android:layout_width="match_parent"
        android:layout_height="@dimen/px_320">
 
        <RelativeLayout
            android:gravity="center"
            android:layout_gravity="center"
            android:id="@+id/rl_detail"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
 
            <ImageView
                android:id="@+id/iv_bg"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:src="@mipmap/lc_demo_default_bg"></ImageView>
 
            <ImageView
                android:id="@+id/iv_play"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:src="@mipmap/lc_demo_home_btn_bigmode_play"></ImageView>
 
            <RelativeLayout
                android:id="@+id/rl_offline"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_centerInParent="true"
                android:background="@color/lc_demo_color_66000000"
                android:visibility="gone">
 
                <TextView
                    android:id="@+id/tv_offline"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:gravity="center"
                    android:text="@string/lc_demo_main_offline"
                    android:textColor="@color/lc_demo_color_ffffff"></TextView>
            </RelativeLayout>
        </RelativeLayout>
        <android.support.v7.widget.RecyclerView
            android:visibility="gone"
            android:layout_gravity="center"
            android:id="@+id/rcv_channel"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </android.support.v7.widget.RecyclerView>
    </FrameLayout>
</LinearLayout>