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
  • liveModule
  • src
  • main
  • res
  • layout
  • dialog_publish_detail.xml
Find file
Normal viewHistoryPermalink
dialog_publish_detail.xml 3 KB
Newer Older
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:gravity="center"
    android:background="@color/colorDarkTransparentGray"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:gravity="center"
        android:textSize="24sp"
        android:textColor="@color/colorLight"
        android:text="@string/live_end_tips"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <!-- 直播时长 -->
    <TextView
        android:id="@+id/tv_time"
        android:layout_marginTop="55dp"
        android:gravity="center"
        android:textSize="20sp"
        android:textColor="@color/white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <TextView
        android:gravity="center"
        android:layout_marginTop="10dp"
        android:textSize="@dimen/sub_content"
        android:textColor="@color/white"
        android:text="@string/live_time_tips"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
mReturn's avatar
直播调试
111203fe
 
mReturn committed 4 years ago
33 34 35 36 37
    <LinearLayout
        android:visibility="gone"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
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
    <!-- 观看人数 -->
    <TextView
        android:id="@+id/tv_members"
        android:layout_marginTop="30dp"
        android:gravity="center"
        android:textSize="20sp"
        android:textColor="@color/white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <TextView
        android:gravity="center"
        android:textSize="@dimen/sub_content"
        android:textColor="@color/white"
        android:text="@string/live_members_tips"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <!-- 获赞数量 -->
    <TextView
        android:id="@+id/tv_admires"
        android:layout_marginTop="30dp"
        android:gravity="center"
        android:textSize="20sp"
        android:textColor="@color/white"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <TextView
        android:gravity="center"
        android:layout_marginTop="10dp"
        android:textSize="@dimen/sub_content"
        android:textColor="@color/white"
        android:text="@string/live_admires_tips"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
mReturn's avatar
直播调试
111203fe
 
mReturn committed 4 years ago
71
    </LinearLayout>
mReturn's avatar
接入直播
b8338b29
 
mReturn committed 4 years ago
72 73 74 75 76 77 78 79 80 81 82 83
    <TextView
        android:id="@+id/anchor_btn_cancel"
        android:layout_marginTop="50dp"
        android:padding="5dp"
        android:text="@string/btn_return_home"
        android:textSize="@dimen/title"
        android:textColor="@color/colorLight"
        android:gravity="center"
        android:background="@drawable/button_return_home_page"
        android:layout_width="225dp"
        android:layout_height="35dp" />
</LinearLayout>