This commit is contained in:
2026-05-08 09:59:54 +08:00
parent ae5559e01a
commit 428b5e507f
36 changed files with 1420 additions and 303 deletions

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:toXScale="1.3"
android:toYScale="1.3" />

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/white" />
<corners
android:topLeftRadius="24dp"
android:topRightRadius="24dp" />
<padding
android:bottom="8dp" />
</shape>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/setting_gray"/>
<corners android:radius="4dp"/>
</shape>

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -3,10 +3,9 @@
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F5F6F6"
android:background="#F9F9F9"
android:orientation="vertical">
<!-- 顶部导航栏 -->
<LinearLayout
android:id="@+id/topBar"
android:layout_width="match_parent"
@@ -38,120 +37,119 @@
</LinearLayout>
<!-- 视频播放区域 -->
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="280dp"-->
<!-- android:background="#000000">-->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="280dp"
android:background="#000000">
<!-- <ImageView-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent"-->
<!-- android:scaleType="centerCrop"-->
<!-- android:src="@drawable/img" />-->
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/img" />
<!-- &lt;!&ndash; 功能按钮 &ndash;&gt;-->
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent"-->
<!-- android:orientation="vertical">-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="0dp"-->
<!-- android:layout_weight="1"-->
<!-- android:gravity="top|end"-->
<!-- android:padding="16dp">-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="top|end"
android:padding="16dp">
<!-- <LinearLayout-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:orientation="vertical">-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- <ImageView-->
<!-- android:layout_width="40dp"-->
<!-- android:layout_height="40dp"-->
<!-- android:layout_marginBottom="8dp"-->
<!-- android:src="@drawable/download" />-->
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginBottom="8dp"
android:src="@drawable/download" />
<!-- <ImageView-->
<!-- android:layout_width="40dp"-->
<!-- android:layout_height="40dp"-->
<!-- android:layout_marginBottom="8dp" />-->
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginBottom="8dp"
android:src="@drawable/mute"/>
<!-- <ImageView-->
<!-- android:layout_width="40dp"-->
<!-- android:layout_height="40dp"-->
<!-- android:layout_marginBottom="8dp"-->
<!-- android:src="@drawable/delete" />-->
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginBottom="8dp"
android:src="@drawable/delete" />
<!-- <ImageView-->
<!-- android:layout_width="40dp"-->
<!-- android:layout_height="40dp" />-->
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/mute"/>
<!-- </LinearLayout>-->
</LinearLayout>
<!-- </LinearLayout>-->
</LinearLayout>
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="0dp"-->
<!-- android:layout_weight="1"-->
<!-- android:gravity="bottom|end"-->
<!-- android:padding="16dp">-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="bottom|end"
android:padding="16dp">
<!-- <ImageView-->
<!-- android:layout_width="40dp"-->
<!-- android:layout_height="40dp"-->
<!-- android:src="@drawable/full_screen" />-->
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/full_screen" />
<!-- </LinearLayout>-->
</LinearLayout>
<!-- </LinearLayout>-->
</LinearLayout>
<!-- &lt;!&ndash; 播放控制栏 &ndash;&gt;-->
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:background="#000000"-->
<!-- android:orientation="horizontal"-->
<!-- android:padding="8dp">-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="#000000"
android:orientation="horizontal"
android:padding="8dp">
<!-- <ImageView-->
<!-- android:id="@+id/ivPlay"-->
<!-- android:layout_width="32dp"-->
<!-- android:layout_height="32dp"-->
<!-- android:src="@drawable/play" />-->
<ImageView
android:id="@+id/ivPlay"
android:layout_width="32dp"
android:layout_height="32dp"
android:src="@drawable/start" />
<!-- <TextView-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_marginLeft="8dp"-->
<!-- android:text="01:05"-->
<!-- android:textColor="#FFFFFF"-->
<!-- android:textSize="14sp" />-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:text="01:05"
android:textColor="#FFFFFF"
android:textSize="14sp" />
<!-- <SeekBar-->
<!-- android:id="@+id/seekBar"-->
<!-- android:layout_width="0dp"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_weight="1"-->
<!-- android:layout_marginLeft="8dp"-->
<!-- android:layout_marginRight="8dp"-->
<!-- android:progress="20" />-->
<SeekBar
android:id="@+id/seekBar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:progress="20" />
<!-- <TextView-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:text="05:05"-->
<!-- android:textColor="#FFFFFF"-->
<!-- android:textSize="14sp" />-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="05:05"
android:textColor="#FFFFFF"
android:textSize="14sp" />
<!-- </LinearLayout>-->
</LinearLayout>
<!-- </LinearLayout-->>-->
</FrameLayout>
<!-- 日期选择区域 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="48dp"
@@ -166,6 +164,7 @@
android:orientation="horizontal">
<TextView
android:id="@+id/tvDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="10月11日"
@@ -173,192 +172,20 @@
android:textStyle="bold" />
<ImageView
android:id="@+id/expandImg"
android:layout_width="20dp"
android:layout_height="20dp" />
android:layout_height="match_parent"
android:src="@drawable/expand" />
</LinearLayout>
</LinearLayout>
<!-- 告警列表 -->
<LinearLayout
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/alarmListRecyclerView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#FFFFFF"
android:orientation="vertical"
android:padding="16dp">
android:background="#FFFFFF" />
<!-- 告警项1 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#F5F6F6"
android:orientation="horizontal"
android:padding="12dp">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="入侵告警"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="10:35"
android:textColor="#999999"
android:textSize="14sp" />
</LinearLayout>
<RelativeLayout
android:layout_width="80dp"
android:layout_height="80dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/img" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:background="#000000"
android:padding="2dp"
android:text="60s"
android:textColor="#FFFFFF"
android:textSize="10sp" />
</RelativeLayout>
</LinearLayout>
<!-- 告警项2 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="16dp"
android:background="#F5F6F6"
android:orientation="horizontal"
android:padding="12dp">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="入侵告警"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="09:35"
android:textColor="#999999"
android:textSize="14sp" />
</LinearLayout>
<RelativeLayout
android:layout_width="80dp"
android:layout_height="80dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/img" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:background="#000000"
android:padding="2dp"
android:text="60s"
android:textColor="#FFFFFF"
android:textSize="10sp" />
</RelativeLayout>
</LinearLayout>
<!-- 告警项3 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="16dp"
android:background="#F5F6F6"
android:orientation="horizontal"
android:padding="12dp">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="入侵告警"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="08:35"
android:textColor="#999999"
android:textSize="14sp" />
</LinearLayout>
<RelativeLayout
android:layout_width="80dp"
android:layout_height="80dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/img" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:background="#000000"
android:padding="2dp"
android:text="60s"
android:textColor="#FFFFFF"
android:textSize="10sp" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>

View File

@@ -39,16 +39,15 @@
android:layout_width="match_parent"
android:layout_height="52dp"
android:layout_marginTop="18dp"
android:background="@drawable/textinput_white_bg"
android:background="@drawable/setting_gray_bg"
android:gravity="center_vertical"
android:hint="请输入"
android:inputType="numberDecimal"
android:inputType="text"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:textColor="@color/black"
android:textColorHint="@color/gray"
android:textSize="16sp"
android:visibility="gone" />
android:textSize="16sp" />
</LinearLayout>
<View
@@ -70,7 +69,7 @@
android:layout_weight="1"
android:gravity="center"
android:textColor="@color/black"
android:textSize="18sp"
android:textSize="16dp"
android:textStyle="bold" />
<View
@@ -86,7 +85,7 @@
android:layout_weight="1"
android:gravity="center"
android:textColor="@color/green"
android:textSize="18sp"
android:textSize="16dp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_bg"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingHorizontal="16dp">
<TextView
android:id="@+id/tv_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="取消"
android:textColor="@color/black"
android:textSize="16sp" />
<View
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<TextView
android:id="@+id/tv_confirm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确认"
android:textColor="@color/green"
android:textSize="16sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/dialog_view" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="300dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/item_bluetooth"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="蓝牙识别"
android:textColor="@color/black"
android:textSize="16sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/dialog_view" />
<LinearLayout
android:id="@+id/item_bluetooth_face"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="蓝牙+人脸识别"
android:textColor="@color/black"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<View
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="@color/face" />
</LinearLayout>

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp"
android:gravity="center_vertical">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:textColor="#333333" />
<TextView
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:textSize="14sp"
android:textColor="#999999" />
</LinearLayout>
<ImageView
android:src="@drawable/img"
android:id="@+id/iv_thumbnail"
android:layout_width="80dp"
android:layout_height="50dp"
android:scaleType="centerCrop" />
</LinearLayout>

View File

@@ -131,6 +131,7 @@
android:orientation="horizontal">
<TextView
android:id="@+id/tvRecognitionMode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="蓝牙+人脸"
@@ -227,6 +228,7 @@
android:orientation="horizontal">
<TextView
android:id="@+id/tvDeviceName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="智能防御机A1"

View File

@@ -14,5 +14,7 @@
<color name="dialog_view">#E7E7E7 </color>
<color name="message_bg">#F9F9F9 </color>
<color name="blue">#03A9F4</color>
<color name="bg_gray">#F7F7F7</color>
<color name="setting_gray">#F3F3F3</color>
</resources>