diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt index c5d8aae365..d27836740b 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt @@ -1878,7 +1878,7 @@ class DebugSettingView @JvmOverloads constructor( if(lock){ tbReportWarning.background = resources.getDrawable(R.drawable.radio_button_lock_background) }else{ - tbReportWarning.background = resources.getDrawable(R.drawable.radio_button_normal_background_right) + tbReportWarning.background = null } } BIZ_BAG_RECORD -> { @@ -1888,7 +1888,7 @@ class DebugSettingView @JvmOverloads constructor( } else { btnRecordBag.isClickable = true btnRecordBag.requestFocus() - btnRecordBag.background = resources.getDrawable(R.drawable.radio_button_normal_background_right) + btnRecordBag.background = null } } BIZ_FULL_LOG -> { @@ -1898,7 +1898,7 @@ class DebugSettingView @JvmOverloads constructor( } else { tbLogCatch.isClickable = true tbLogCatch.requestFocus() - tbLogCatch.background = resources.getDrawable(R.drawable.radio_button_normal_background_right) + tbLogCatch.background = null } } } diff --git a/core/function-impl/mogo-core-function-hmi/src/main/res/layout/view_debug_setting.xml b/core/function-impl/mogo-core-function-hmi/src/main/res/layout/view_debug_setting.xml index dd2c4e65ea..4b385e8fca 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/res/layout/view_debug_setting.xml +++ b/core/function-impl/mogo-core-function-hmi/src/main/res/layout/view_debug_setting.xml @@ -649,7 +649,6 @@ android:id="@+id/btnRecordBag" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:background="@drawable/radio_button_normal_background_right" android:gravity="center" android:padding="@dimen/dp_5" android:text="录制Bag包" @@ -1188,7 +1187,6 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/dp_10" - android:background="@drawable/radio_button_normal_background_right" android:textColor="#000" android:textOff="开启异常上报提示" android:textOn="关闭异常上报提示"