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/activity_meeting.xml | 440 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 440 insertions(+), 0 deletions(-) diff --git a/app/src/main/res/layout/activity_meeting.xml b/app/src/main/res/layout/activity_meeting.xml new file mode 100644 index 0000000..bd594b2 --- /dev/null +++ b/app/src/main/res/layout/activity_meeting.xml @@ -0,0 +1,440 @@ +<?xml version="1.0" encoding="utf-8"?> +<layout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + > + <data> + <import type="android.view.View"/> + <variable + name="viewModel" + type="com.application.zhangshi_app_android.ui.function.MeetingActivityViewModel"/> + </data> + + <!--绾︽潫甯冨眬锛岃В鍐冲竷灞�宓屽杩囧鐨勯棶棰橈紝浠ョ伒娲荤殑鏂瑰紡瀹氫綅鍜岃皟鏁村皬閮ㄤ欢銆�--> + <androidx.constraintlayout.widget.ConstraintLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".ui.function.MeetingActivity" + android:background="?attr/pageBackgroundColor" + > + + <!--鏍囬鏍�,瀹冪揣鎸ㄧ姸鎬佹爮鐨勪笅闈紝姝e父鎯呭喌涓嬪畠鐨勫竷灞�鍜屼富棰樻牱寮忛兘鏄娇鐢ㄧ郴缁熷畾涔夊ソ鐨勶紝涓旈粯璁ゆ儏鍐典笅鍙樉绀哄浘鏍囧拰鏂囨湰銆�--> + <com.android.app_base.widget.ExtendTitleBar + android:id="@+id/titleBar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + app:layout_constraintTop_toTopOf="parent" + > + + <FrameLayout + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_gravity="center_vertical|end" + android:layout_marginHorizontal="16dp"> + + <ImageView + android:id="@+id/iv_operate" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:background="@drawable/ic_operate" /> + </FrameLayout> + + <LinearLayout + android:id="@+id/layout_default" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginHorizontal="56dp" + android:gravity="center_vertical" + > + <TextView + android:id="@+id/tv_title" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginStart="16dp" + android:text="浼氳鐢宠" + android:layout_weight="1" + android:textColor="@color/white" + android:textSize="20sp" + /> + <ImageView + android:id="@+id/iv_search_default" + android:layout_width="@dimen/dp_24" + android:layout_height="@dimen/dp_24" + android:background="@drawable/ic_search" + /> + </LinearLayout> + + <LinearLayout + android:id="@+id/layout_search" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginVertical="4dp" + android:layout_marginHorizontal="56dp" + android:gravity="center_vertical" + android:background="@color/white" + android:paddingHorizontal="5dp" + android:visibility="gone" + > + <ImageView + android:id="@+id/iv_search" + android:layout_width="24dp" + android:layout_height="24dp" + android:background="@drawable/ic_search_gray" + /> + <EditText + android:id="@+id/et_search" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginStart="5dp" + android:textSize="14sp" + android:textColor="#61000000" + android:background="@null" + android:imeOptions="actionSearch" + android:text="" + android:singleLine="true" + android:hint="鍦ㄢ�滀細璁敵璇封�滀腑鎼滅储" + android:focusable="false" + android:clickable="false" + /> + <ImageView + android:id="@+id/iv_search_type" + android:layout_width="24dp" + android:layout_height="24dp" + android:background="@drawable/ic_search_by" + /> + </LinearLayout> + + </com.android.app_base.widget.ExtendTitleBar> + + <LinearLayout + android:id="@+id/layout_data_null" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + android:gravity="center" + android:visibility="gone" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/titleBar"> + + <ImageView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/img_data_null" + /> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="18dp" + android:text="鏆傛椂杩樻病鏈夋暟鎹摝~\n鐐瑰嚮鈥濓紜鈥濈珛鍗冲垱寤�" + android:textSize="14sp" + android:textColor="#73000000" + /> + </LinearLayout> + <com.scwang.smart.refresh.layout.SmartRefreshLayout + android:id="@+id/refreshLayout" + android:layout_width="match_parent" + android:layout_height="0dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintTop_toBottomOf="@+id/titleBar" + > + <com.scwang.smart.refresh.header.MaterialHeader + android:layout_width="match_parent" + android:layout_height="wrap_content" + /> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/recyclerView" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginTop="20dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintTop_toBottomOf="@+id/titleBar" + tools:itemCount="20" + tools:listitem="@layout/item_meeting" /> + <com.scwang.smart.refresh.footer.BallPulseFooter + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + </com.scwang.smart.refresh.layout.SmartRefreshLayout> + <RelativeLayout + android:id="@+id/container_search_parameter" + android:layout_width="0dp" + android:layout_height="0dp" + app:layout_constraintTop_toBottomOf="@id/titleBar" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent" + android:layout_marginTop="-4dp" + tools:layout_height="wrap_content" + > + <LinearLayout + android:id="@+id/layout_search_parameter" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@color/white" + android:layout_marginHorizontal="56dp" + android:paddingEnd="12dp" + android:paddingStart="5dp" + > + <View + android:layout_width="match_parent" + android:layout_height="0.5dp" + android:background="#FF939393" /> + + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" /> + + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="40dp" + android:gravity="center" + > + + <androidx.appcompat.widget.AppCompatTextView + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="wrap_content" + android:text="鏃堕棿" + android:textColor="#FF333333" + android:textSize="14sp" + android:gravity="center" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + /> + + <LinearLayout + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="4" + android:gravity="center" + > + <androidx.appcompat.widget.AppCompatTextView + android:id="@+id/et_start_time" + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="wrap_content" + android:gravity="center" + android:layout_marginStart="6dp" + android:text="@={viewModel.requestBeanLiveData.happenStartTime}" + android:hint="寮�濮嬫椂闂�" + android:textColorHint="#61000000" + android:textColor="#FF333333" + android:textSize="14sp" + android:maxLines="1" + android:lines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + tools:text="2022-01-01" + /> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="鈥�" + /> + <androidx.appcompat.widget.AppCompatTextView + android:id="@+id/et_end_time" + android:layout_width="0dp" + android:layout_weight="1" + android:gravity="center" + android:layout_height="wrap_content" + android:text="@={viewModel.requestBeanLiveData.happenEndTime}" + android:hint="缁撴潫鏃堕棿" + android:textColorHint="#61000000" + android:textColor="#FF333333" + android:textSize="14sp" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + tools:text="2022-01-01" + /> + <ImageView + android:id="@+id/iv_time_clear" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/ic_clear" + android:visibility="invisible" + /> + </LinearLayout> + + </LinearLayout> + + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" /> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="40dp" + android:gravity="center"> + + <androidx.appcompat.widget.AppCompatTextView + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="wrap_content" + android:text="鍦扮偣" + android:textColor="#FF333333" + android:textSize="14sp" + android:gravity="center" + android:maxLines="1" + android:lines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + /> + + <com.android.app_base.widget.ClearEditText + android:layout_width="0dp" + android:layout_weight="4" + android:layout_height="wrap_content" + android:background="@null" + android:inputType="text" + android:layout_marginStart="6dp" + android:text="@={viewModel.requestBeanLiveData.place}" + android:hint="璇疯緭鍏ュ湴鐐�" + android:textColorHint="#61000000" + android:textColor="#FF333333" + android:textSize="14sp" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + app:background="@drawable/ic_clear" + /> + </LinearLayout> + + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" /> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="40dp" + android:gravity="center"> + + <androidx.appcompat.widget.AppCompatTextView + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="wrap_content" + android:text="鐢宠閮ㄩ棬" + android:textColor="#FF333333" + android:textSize="14sp" + android:gravity="center" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + /> + + <com.android.app_base.widget.ClearEditText + android:layout_width="0dp" + android:layout_weight="4" + android:layout_height="wrap_content" + android:background="@null" + android:inputType="text" + android:layout_marginStart="6dp" + android:text="@={viewModel.requestBeanLiveData.applyApart}" + android:hint="璇疯緭鍏ョ敵璇烽儴闂�" + android:textColorHint="#61000000" + android:textColor="#FF333333" + android:textSize="14sp" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + app:background="@drawable/ic_clear" + /> + + + </LinearLayout> + + + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" /> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="40dp" + android:gravity="center"> + + <androidx.appcompat.widget.AppCompatTextView + android:layout_width="0dp" + android:layout_weight="1" + android:layout_height="wrap_content" + android:text="鐢宠浜�" + android:textColor="#FF333333" + android:textSize="14sp" + android:gravity="center" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + /> + + <com.android.app_base.widget.ClearEditText + android:layout_width="0dp" + + android:layout_weight="4" + android:layout_height="wrap_content" + android:background="@null" + android:inputType="text" + android:layout_marginStart="6dp" + android:text="@={viewModel.requestBeanLiveData.applyPerson}" + android:hint="璇疯緭鍏ョ敵璇蜂汉" + android:textColorHint="#61000000" + android:textColor="#FF333333" + android:textSize="14sp" + android:maxLines="1" + app:autoSizeTextType="uniform" + app:autoSizeMinTextSize="8sp" + app:autoSizeMaxTextSize="14sp" + app:background="@drawable/ic_clear" + /> + + + </LinearLayout> + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" /> + + + <View + android:layout_width="match_parent" + android:layout_height="0.3dp" + android:background="#FF939393" /> + + </LinearLayout> + + </RelativeLayout> + <com.google.android.material.floatingactionbutton.FloatingActionButton + android:id="@+id/fab_add" + android:layout_width="56dp" + android:layout_height="56dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + android:layout_marginEnd="25dp" + android:layout_marginBottom="@dimen/dp_44" + android:src="@drawable/ic_add" + app:fabCustomSize="56dp" + /> + </androidx.constraintlayout.widget.ConstraintLayout> + +</layout> \ No newline at end of file -- Gitblit v1.9.1