Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • learnCenter
  • src
  • main
  • res
  • layout
  • fragment_live_list.xml
Find file
Normal viewHistoryPermalink
fragment_live_list.xml 3.57 KB
Newer Older
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
4
    <LinearLayout
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
5 6
        android:layout_width="match_parent"
        android:layout_height="match_parent"
wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
7 8 9 10
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:background="#f5f5f5"
        android:orientation="vertical">
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
11

wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
12 13
        <RelativeLayout
            android:id="@+id/rl_seacher"
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
14
            android:layout_width="match_parent"
wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
15 16 17 18 19
            android:layout_height="45dp"
            android:background="@color/cl_white"
            android:layout_marginLeft="13dp"
            android:layout_marginRight="13dp"
            >
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
20

wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
21 22
            <EditText
                android:id="@+id/edt_seacher"
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
23
                android:layout_width="match_parent"
wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
                android:layout_height="match_parent"
                android:layout_centerVertical="true"
                android:layout_marginBottom="5dp"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:background="@null"
                android:gravity="center"
                android:hint="查找直播视频"
                android:imeOptions="actionSearch"
                android:inputType="text"
                android:singleLine="true"
                android:layout_toLeftOf="@+id/tv_cancel"
                android:textSize="15sp" />


            <TextView
                android:id="@+id/tv_cancel"
                android:layout_width="wrap_content"
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
42
                android:layout_height="wrap_content"
wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
43 44 45 46 47 48 49 50 51 52
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="20dp"
                android:gravity="center"
                android:text="@string/cancle"
                android:textColor="@color/cl_black"
                android:textSize="16sp"
                android:textStyle="bold"
                android:visibility="gone"
                />
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
53

wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="5dp"
                android:layout_alignParentBottom="true"
                android:src="@drawable/line_shape" />
        </RelativeLayout>

        <com.scwang.smartrefresh.layout.SmartRefreshLayout
            android:id="@+id/refresh_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#f5f5f5">

            <androidx.core.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
70

wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
71
                <LinearLayout
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
72 73
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
wukun's avatar
24.1.14
b1bb1157
 
wukun committed a year ago
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
                    android:orientation="vertical">

                    <androidx.recyclerview.widget.RecyclerView
                        android:id="@+id/rv_live"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:overScrollMode="never" />

                    <androidx.recyclerview.widget.RecyclerView
                        android:id="@+id/rv_video"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:overScrollMode="never" />

                </LinearLayout>
            </androidx.core.widget.NestedScrollView>
        </com.scwang.smartrefresh.layout.SmartRefreshLayout>
    </LinearLayout>
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
92 93 94


</layout>