优化配置页面和首页布局:添加自定义提示词功能,简化UI设计,去掉圆角边框,添加返回首页按钮

This commit is contained in:
2026-03-15 15:52:51 +08:00
parent 9eae35bc7c
commit c6ae059e65
18 changed files with 1574 additions and 721 deletions

21
test_logcat.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
echo 测试日志系统...
echo.
echo 当前设备:
adb devices
echo.
echo 清除旧日志...
adb logcat -c
echo.
echo 等待5秒让日志系统稳定...
timeout /t 5 /nobreak >nul
echo.
echo 测试日志输出(应显示系统日志):
adb logcat -d -v time | findstr /C:"I/" | head -n 5
echo.
echo 如果看到上述日志,说明日志系统工作正常
echo 现在请在模拟器中运行APP然后按回车查看日志...
pause >nul
echo.
echo 开始监控应用日志...
adb logcat -v time -s MainActivity:* SecondActivity:*