[8.1.0][opt]隐藏预测和决策功能

This commit is contained in:
chenfufeng
2025-06-20 15:31:07 +08:00
parent d5498f8ce6
commit 7845223b08
3 changed files with 38 additions and 39 deletions

View File

@@ -24,7 +24,6 @@ import kotlinx.android.synthetic.main.taxi_p_home.view.lbv_go2_center
import kotlinx.android.synthetic.main.taxi_p_home.view.leftEndGuideline
import kotlinx.android.synthetic.main.taxi_p_home.view.midContainer
import kotlinx.android.synthetic.main.taxi_p_home.view.midStartGuideline
import kotlinx.android.synthetic.main.taxi_p_home.view.preContainer
class HomeView @JvmOverloads constructor(
context: Context,
@@ -88,37 +87,37 @@ class HomeView @JvmOverloads constructor(
fun onCreate(savedInstanceState: Bundle?) {
hdMapView.onCreate(savedInstanceState)
preContainer.onCreate(savedInstanceState)
// preContainer.onCreate(savedInstanceState)
// decContainer.onCreate(savedInstanceState)
}
fun onSaveInstanceState(outState: Bundle) {
hdMapView.onSaveInstanceState(outState)
preContainer.onSaveInstanceState(outState)
// preContainer.onSaveInstanceState(outState)
// decContainer.onSaveInstanceState(outState)
}
fun onResume() {
hdMapView.onResume()
preContainer.onResume()
// preContainer.onResume()
// decContainer.onResume()
}
fun onLowMemory() {
hdMapView.onLowMemory()
preContainer.onLowMemory()
// preContainer.onLowMemory()
// decContainer.onLowMemory()
}
fun onPause() {
hdMapView.onPause()
preContainer.onPause()
// preContainer.onPause()
// decContainer.onPause()
}
fun onDestroy() {
hdMapView.onDestroy()
preContainer.onDestroy()
// preContainer.onDestroy()
// decContainer.onDestroy()
}

View File

@@ -55,21 +55,21 @@ class HomeViewModel : ViewModel(), BridgeListener, OrderListener {
}
private fun checkScreenChange(){
CallerLogger.d(TAG,"havePredictionInfos:${havePredictionInfos}--haveTrajectoryInfos:${haveTrajectoryInfos}--order:${order}")
if(havePredictionInfos&&havePredictionInfos){//order!=null&&
FunctionBuildConfig.isDrawDecIdentifyData = true
FunctionBuildConfig.isDrawPreIdentifyData = true
// 展示三联屏
BizLoopManager.runInMainThread{
this.viewCallback?.showThreeScreen()
}
}else{
FunctionBuildConfig.isDrawDecIdentifyData = false
FunctionBuildConfig.isDrawPreIdentifyData = false
// 展示二联屏幕
BizLoopManager.runInMainThread{
this.viewCallback?.showTwoScreen()
}
}
// CallerLogger.d(TAG,"havePredictionInfos:${havePredictionInfos}--haveTrajectoryInfos:${haveTrajectoryInfos}--order:${order}")
// if(havePredictionInfos&&havePredictionInfos){//order!=null&&
// FunctionBuildConfig.isDrawDecIdentifyData = true
// FunctionBuildConfig.isDrawPreIdentifyData = true
// // 展示三联屏
// BizLoopManager.runInMainThread{
// this.viewCallback?.showThreeScreen()
// }
// }else{
// FunctionBuildConfig.isDrawDecIdentifyData = false
// FunctionBuildConfig.isDrawPreIdentifyData = false
// // 展示二联屏幕
// BizLoopManager.runInMainThread{
// this.viewCallback?.showTwoScreen()
// }
// }
}
}

View File

@@ -34,23 +34,23 @@
app:layout_constraintStart_toEndOf="@+id/midStartGuideline"
app:layout_constraintTop_toTopOf="parent">
<com.mogo.eagle.core.function.view.PredictionLayout
android:id="@+id/preContainer"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_676"
android:background="@drawable/taxi_p_home_middle_top_bg"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<!-- <com.mogo.eagle.core.function.view.PredictionLayout-->
<!-- android:id="@+id/preContainer"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="@dimen/dp_676"-->
<!-- android:background="@drawable/taxi_p_home_middle_top_bg"-->
<!-- app:layout_constraintEnd_toEndOf="parent"-->
<!-- app:layout_constraintStart_toStartOf="parent"-->
<!-- app:layout_constraintTop_toTopOf="parent" />-->
<com.mogo.eagle.core.function.view.DecisionLayout
android:id="@+id/decContainer"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_676"
android:background="@drawable/taxi_p_home_middle_bottom_bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<!-- <com.mogo.eagle.core.function.view.DecisionLayout-->
<!-- android:id="@+id/decContainer"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="@dimen/dp_676"-->
<!-- android:background="@drawable/taxi_p_home_middle_bottom_bg"-->
<!-- app:layout_constraintBottom_toBottomOf="parent"-->
<!-- app:layout_constraintEnd_toEndOf="parent"-->
<!-- app:layout_constraintStart_toStartOf="parent" />-->
</androidx.constraintlayout.widget.ConstraintLayout>