refactor: 电报解析列表整卡点击跳转及调试菜单切换至国际进港

- 电报解析列表项整个卡片可点击跳转详情,勾选框除外
- 开发调试自动跳转目标从国际出港改为国际进港
- 重构调试开关为通用配置,支持一键关闭和切换目标菜单

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 16:27:47 +08:00
parent f628ae64a9
commit 41fc2f4558
2 changed files with 15 additions and 19 deletions

View File

@@ -14,10 +14,10 @@ class IntImpMsgParseViewHolder(view: View) :
binding.position = position
binding.executePendingBindings()
// 卡片点击 - 查看详情
notifyItemClick(position, binding.llContent)
// 整个卡片点击 - 查看详情
notifyItemClick(position, itemView)
// 选择框点击 - 切换选择状态
// 选择框点击 - 切换选择状态(拦截,不触发卡片点击)
binding.ivCheck.setOnClickListener {
bean.checked.set(!bean.checked.get())
binding.executePendingBindings()