[6.7.0] ui change

This commit is contained in:
EmArrow
2024-09-24 10:21:00 +08:00
parent 6a2fc097fd
commit 75acdffb99
3 changed files with 5 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ import system_master.SsmInfo
import system_master.SystemStatusInfo
private fun String.parsePlateNo(): String {
return substring(0, 2) + " " + substring(2)
return " " + substring(0, 2) + " " + substring(2) + " "
}
private fun String.parsePhoneNo(): String {
return take(3) + "****" + takeLast(4)

View File

@@ -40,8 +40,10 @@
android:layout_marginEnd="@dimen/dp_40">
<ImageView
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:id="@+id/ivCarType"
android:layout_width="match_parent"
android:layout_width="@dimen/dp_532"
android:layout_height="@dimen/dp_280"
android:scaleType="fitXY"
app:layout_constraintTop_toTopOf="parent"

View File

@@ -120,7 +120,7 @@ class RoadCrossCameraManager : IMoGoMapRoadListener {
Point.Options.Builder(TAG, Level.MAP_MARKER)
.setId(cameraDeviceInfo.deviceIp)
.anchor(0.5f, 1f)
.scale(1.3f)
.scale(2f)
.set3DMode(true)
.isUseGps(true)
.controlAngle(false)