1:修改时间选择框,根据需要,展示时分秒和不显示时分秒

2:修改展示设备id,在头部信息中,使用第三方的获取设备唯一id
3:优化群聊成员列表展示
4:修改房间封面,上传图片的时候,需要裁剪
5:添加营业时间展示
6:pk修改开始的时候,选择时间去掉1分钟
7:修改声网,添加声卡开关
This commit is contained in:
2026-01-20 19:21:56 +08:00
parent 163340a691
commit 4fdd5578a8
2 changed files with 34 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_r16_tb_ffffff"
android:paddingTop="@dimen/dp_16"
android:paddingBottom="@dimen/dp_20">
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_marginStart="@dimen/dp_16"
android:text="赠送详情"
android:textColor="#333333"
android:textSize="16sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_charm_list"
tools:listitem="@layout/item_charm_dialog"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_300"
android:layout_marginStart="@dimen/dp_16"
android:layout_marginTop="@dimen/dp_30"
android:layout_marginEnd="@dimen/dp_16"
android:layout_marginBottom="20dp" />
</RelativeLayout>
</layout>