From 5325e22a184b53aadcc5e9552cb1ec54f9c8ad81 Mon Sep 17 00:00:00 2001
From: guoshen <3129367635@qq.com>
Date: 星期六, 29 六月 2024 16:33:11 +0800
Subject: [PATCH] 加入了直播、会议功能

---
 app/src/main/res/layout/pop_operate_read.xml |   72 ++++++++++++++++++++++++++++++++++++
 1 files changed, 72 insertions(+), 0 deletions(-)

diff --git a/app/src/main/res/layout/pop_operate_read.xml b/app/src/main/res/layout/pop_operate_read.xml
new file mode 100644
index 0000000..eb28c31
--- /dev/null
+++ b/app/src/main/res/layout/pop_operate_read.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    android:orientation="vertical"
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+     app:cardBackgroundColor="?attr/popupWindowBackgroundColor"
+    app:cardCornerRadius="10dp"
+    app:cardElevation="0dp"
+    >
+    <LinearLayout
+        android:layout_width="85dp"
+        android:layout_height="wrap_content"
+        android:orientation="vertical"
+        android:gravity="center_horizontal"
+        >
+
+        <TextView
+            android:id="@+id/tv_from_new_to_old"
+            android:layout_width="wrap_content"
+            android:layout_height="32dp"
+            android:text="鐢辨柊鍒版棫"
+            android:gravity="center"
+            android:textColor="#FF333333"
+            android:textSize="12sp"
+            app:drawableStartCompat="@drawable/ic_operate_order"
+            android:drawablePadding="3dp"
+            />
+        <View
+            android:layout_width="match_parent"
+            android:layout_height="0.3dp"
+            android:background="#FF939393"
+            />
+        <TextView
+            android:id="@+id/tv_from_old_to_new"
+            android:layout_width="wrap_content"
+            android:layout_height="32dp"
+            android:text="鐢辨棫鍒版柊"
+            android:gravity="center"
+            android:textColor="#FF333333"
+            android:textSize="12sp"
+            app:drawableStartCompat="@drawable/ic_operate_order"
+            android:drawablePadding="3dp"
+            />
+        <LinearLayout
+            android:id="@+id/layout_own_top"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:orientation="vertical"
+            android:gravity="center_horizontal"
+            >
+            <View
+                android:layout_width="match_parent"
+                android:layout_height="0.3dp"
+                android:background="#FF939393"
+                />
+            <TextView
+                android:id="@+id/tv_own_top"
+                android:layout_width="wrap_content"
+                android:layout_height="32dp"
+                android:text="鏈缃《"
+                android:gravity="center"
+                android:textColor="#FF333333"
+                android:textSize="12sp"
+                app:drawableStartCompat="@drawable/ic_operate_order"
+                android:drawablePadding="3dp"
+                />
+        </LinearLayout>
+
+    </LinearLayout>
+
+</androidx.cardview.widget.CardView>
\ No newline at end of file

--
Gitblit v1.9.1