6.7.0 - Alpha19 - 修复代码编辑器加载大文件可能导致应用崩溃的问题, 一定程度提升大文件加载流畅度

This commit is contained in:
SuperMonster003
2026-02-08 13:22:15 +08:00
parent 7307c29711
commit 29fba208b0
11 changed files with 1256 additions and 48 deletions

View File

@@ -83,6 +83,29 @@
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/functions" />
<FrameLayout
android:id="@+id/loading_bar_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:focusable="false"
android:visibility="gone"
tools:visibility="visible"
tools:background="#A0000000">
<TextView
android:id="@+id/loading_bar_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:textColor="@color/night_full"
android:textSize="14sp"
tools:text="@string/text_loading_with_dots" />
</FrameLayout>
</RelativeLayout>
<org.autojs.autojs.ui.edit.keyboard.FunctionsKeyboardView

View File

@@ -1286,4 +1286,5 @@
<string name="text_write_secure_settings">修改安全设置</string>
<string name="text_write_system_settings">修改系统设置</string>
<string name="text_xiaomi_background_popup_permission">后台弹出界面</string>
<string name="text_loading_completed">加载完毕</string>
</resources>

View File

@@ -1561,4 +1561,5 @@
<string name="text_write_secure_settings">Write security settings</string>
<string name="text_write_system_settings">Write system settings</string>
<string name="text_xiaomi_background_popup_permission">Display pop-up windows while running in the background</string>
<string name="text_loading_completed">Loading completed</string>
</resources>