增加符号详情
This commit is contained in:
parent
9a4b4d2f58
commit
a92dc071d2
@ -356,6 +356,11 @@ class MainActivity : BaseActivity() {
|
|||||||
|
|
||||||
lifecycleScope.launch{
|
lifecycleScope.launch{
|
||||||
delay(100)
|
delay(100)
|
||||||
|
|
||||||
|
val bundle = Bundle()
|
||||||
|
bundle.putParcelable("SignBean", it)
|
||||||
|
bundle.putBoolean("AutoSave", false)
|
||||||
|
rightController.navigate(R.id.EvaluationResultFragment, bundle)
|
||||||
val fragment =
|
val fragment =
|
||||||
supportFragmentManager.findFragmentById(R.id.main_activity_sign_more_info_fragment)
|
supportFragmentManager.findFragmentById(R.id.main_activity_sign_more_info_fragment)
|
||||||
if (fragment == null) {
|
if (fragment == null) {
|
||||||
@ -365,10 +370,6 @@ class MainActivity : BaseActivity() {
|
|||||||
}else{
|
}else{
|
||||||
supportFragmentManager.beginTransaction().add(R.id.main_activity_sign_more_info_fragment, SignMoreInfoFragment()).commit()
|
supportFragmentManager.beginTransaction().add(R.id.main_activity_sign_more_info_fragment, SignMoreInfoFragment()).commit()
|
||||||
}
|
}
|
||||||
val bundle = Bundle()
|
|
||||||
bundle.putParcelable("SignBean", it)
|
|
||||||
bundle.putBoolean("AutoSave", false)
|
|
||||||
rightController.navigate(R.id.EvaluationResultFragment, bundle)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -568,6 +568,7 @@ class SignUtil {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
//符号
|
||||||
DataCodeEnum.OMDB_OBJECT_SYMBOL.code -> {
|
DataCodeEnum.OMDB_OBJECT_SYMBOL.code -> {
|
||||||
list.add(
|
list.add(
|
||||||
TwoItemAdapterItem(
|
TwoItemAdapterItem(
|
||||||
@ -614,6 +615,98 @@ class SignUtil {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
//杆状物
|
||||||
|
DataCodeEnum.OMDB_POLE.code ->{
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "对象号码",
|
||||||
|
text = "${data.properties["objectPid"]}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "类型",
|
||||||
|
text = when (data.properties["poleType"]) {
|
||||||
|
"1" -> "其他"
|
||||||
|
"2" -> "树干"
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "顶面直径",
|
||||||
|
text = "${data.properties["diameterTop"]}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "底面直径",
|
||||||
|
text = "${data.properties["diameterBottom"]}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "符合高精", text = when (data.properties["compliant"]) {
|
||||||
|
"0" -> "否"
|
||||||
|
"1" -> "是"
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "车道组", text = "${data.properties["lgList"]}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
//箭头
|
||||||
|
DataCodeEnum.OMDB_OBJECT_ARROW.code ->{
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "对象号码",
|
||||||
|
text = "${data.properties["objectPid"]}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "颜色",
|
||||||
|
text = when (data.properties["color"]) {
|
||||||
|
"0" -> "未验证"
|
||||||
|
"1" -> "白色"
|
||||||
|
"2" -> "黄色"
|
||||||
|
"3" -> "红色"
|
||||||
|
"4" -> "彩色"
|
||||||
|
"9" -> "其他"
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "符合高精", text = when (data.properties["compliant"]) {
|
||||||
|
"0" -> "否"
|
||||||
|
"1" -> "是"
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "关联车道中心线", text = "${data.properties["laneLinkPid"]}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "长度", text = "${data.properties["length"]}mm"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
list.add(
|
||||||
|
TwoItemAdapterItem(
|
||||||
|
title = "宽度", text = "${data.properties["width"]}mm"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
adapter.data = list
|
adapter.data = list
|
||||||
return adapter
|
return adapter
|
||||||
|
2
vtm
2
vtm
@ -1 +1 @@
|
|||||||
Subproject commit 271e7b22785b0570a34c50476e17a98dfcca7e71
|
Subproject commit c046e788f5c739612a31c308639fca2de639669a
|
Loading…
x
Reference in New Issue
Block a user