Merge branch 'dev_robotaxi-d_230809_6.0.0' of gitlab.zhidaoauto.com:SCA/L4HA/AndroidApp/MoGoEagleEye into dev_robotaxi-d_230809_6.0.0

This commit is contained in:
wangmingjun
2023-08-31 19:50:04 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,6 @@ public class DebugView @JvmOverloads constructor(
const val BROADCAST_DATA_SHOW = "isShow"
private var logHistoryTextView: TextView? = null
fun printInfoMsg(msg: String) {
printMsg("Info $msg", MainMoGoApplication.getApp().getColor(R.color.background_info))
}
@@ -77,7 +76,7 @@ public class DebugView @JvmOverloads constructor(
)
UiThreadHandler.post({
it.append("\n")
it.append(spannableMsg.toString())
it.append(spannableMsg)
val offset: Int = it.lineCount * it.lineHeight
if (offset > it.height) {

View File

@@ -190,6 +190,7 @@
android:background="@drawable/taxi_debug_view_log_history_bg"
android:fadeScrollbars="false"
android:maxLines="15"
android:minLines="15"
android:scrollbars="vertical"
android:textColor="@android:color/white"
android:textSize="@dimen/dp_24" />