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_approve.xml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/app/src/main/res/layout/pop_operate_approve.xml b/app/src/main/res/layout/pop_operate_approve.xml new file mode 100644 index 0000000..f7e5265 --- /dev/null +++ b/app/src/main/res/layout/pop_operate_approve.xml @@ -0,0 +1,51 @@ +<?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="63dp" + android:orientation="vertical" + android:gravity="center_horizontal" + > + + <TextView + android:id="@+id/tv_agreed" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" + android:drawablePadding="5dp" + android:gravity="center" + android:text="鍚屾剰" + android:textColor="#FF333333" + android:textSize="12sp" + app:drawableStartCompat="@drawable/ic_modify" + /> + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" + /> + <TextView + android:id="@+id/tv_disagree" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="鎷掔粷" + android:gravity="center" + android:textColor="#FFE86F72" + android:textSize="12sp" + app:drawableStartCompat="@drawable/ic_modify" + android:drawablePadding="5dp" + android:layout_weight="1" + /> + + </LinearLayout> + +</androidx.cardview.widget.CardView> \ No newline at end of file -- Gitblit v1.9.1