惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
Google DeepMind News
Google DeepMind News
D
Docker
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
月光博客
月光博客
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(android): add notification app picker · openclaw/open...
Tosko4 · 2026-06-01 · via Recent Commits to openclaw:main

@@ -493,6 +493,8 @@ private fun playVoiceSetupTone() {

493493

Handler(Looper.getMainLooper()).postDelayed({ tone.release() }, 300L)

494494

}

495495496+

private const val NOTIFICATION_PICKER_RESULT_LIMIT = 40

497+496498

@Composable

497499

private fun NotificationSettingsScreen(

498500

viewModel: MainViewModel,

@@ -507,6 +509,19 @@ private fun NotificationSettingsScreen(

507509

val quietEnd by viewModel.notificationForwardingQuietEnd.collectAsState()

508510

val maxEventsPerMinute by viewModel.notificationForwardingMaxEventsPerMinute.collectAsState()

509511

val modeLabel = if (mode == NotificationPackageFilterMode.Blocklist) "Blocklist" else "Allowlist"

512+

val installedApps = remember(context, packages) { queryInstalledApps(context, packages) }

513+

var notificationPickerExpanded by remember { mutableStateOf(false) }

514+

var notificationAppSearch by remember { mutableStateOf("") }

515+

var notificationShowSystemApps by remember { mutableStateOf(false) }

516+

val filteredApps =

517+

remember(installedApps, packages, notificationAppSearch, notificationShowSystemApps) {

518+

filterNotificationAppsForPicker(

519+

apps = installedApps,

520+

selectedPackages = packages,

521+

query = notificationAppSearch,

522+

showSystemApps = notificationShowSystemApps,

523+

)

524+

}

510525

var listenerEnabled by remember { mutableStateOf(DeviceNotificationListenerService.isAccessEnabled(context)) }

511526

val notificationPermissionLauncher =

512527

rememberLauncherForActivityResult(ActivityResultContracts.RequestPermission()) { granted ->

@@ -567,6 +582,124 @@ private fun NotificationSettingsScreen(

567582

)

568583

}

569584

}

585+

NotificationPackagePickerPanel(

586+

mode = mode,

587+

selectedPackages = packages,

588+

apps = filteredApps,

589+

search = notificationAppSearch,

590+

showSystemApps = notificationShowSystemApps,

591+

expanded = notificationPickerExpanded,

592+

onSearchChange = { notificationAppSearch = it },

593+

onShowSystemAppsChange = { notificationShowSystemApps = it },

594+

onExpandedChange = { notificationPickerExpanded = it },

595+

onPackageSelectionChange = { packageName, selected ->

596+

val next = packages.toMutableSet()

597+

if (selected) {

598+

next.add(packageName)

599+

} else {

600+

next.remove(packageName)

601+

}

602+

viewModel.setNotificationForwardingPackagesCsv(next.sorted().joinToString(","))

603+

},

604+

)

605+

}

606+

}

607+608+

@Composable

609+

private fun NotificationPackagePickerPanel(

610+

mode: NotificationPackageFilterMode,

611+

selectedPackages: Set<String>,

612+

apps: List<InstalledApp>,

613+

search: String,

614+

showSystemApps: Boolean,

615+

expanded: Boolean,

616+

onSearchChange: (String) -> Unit,

617+

onShowSystemAppsChange: (Boolean) -> Unit,

618+

onExpandedChange: (Boolean) -> Unit,

619+

onPackageSelectionChange: (String, Boolean) -> Unit,

620+

) {

621+

val visibleApps = apps.take(NOTIFICATION_PICKER_RESULT_LIMIT)

622+

ClawPanel {

623+

Column(verticalArrangement = Arrangement.spacedBy(10.dp)) {

624+

Text(text = "App Filter", style = ClawTheme.type.section, color = ClawTheme.colors.text)

625+

Text(

626+

text = notificationPackageSelectionSummary(mode = mode, selectedCount = selectedPackages.size),

627+

style = ClawTheme.type.body,

628+

color = ClawTheme.colors.textMuted,

629+

)

630+

ClawSecondaryButton(

631+

text = if (expanded) "Close App Picker" else "Open App Picker",

632+

onClick = { onExpandedChange(!expanded) },

633+

modifier = Modifier.fillMaxWidth(),

634+

)

635+

if (expanded) {

636+

ClawTextField(value = search, onValueChange = onSearchChange, placeholder = "Search apps")

637+

SettingsToggleListRow(

638+

SettingsToggleRow(

639+

title = "Show System Apps",

640+

subtitle = "Include Android and background packages.",

641+

icon = Icons.Default.Storage,

642+

checked = showSystemApps,

643+

onCheckedChange = onShowSystemAppsChange,

644+

),

645+

)

646+

if (visibleApps.isEmpty()) {

647+

Text(text = "No matching apps.", style = ClawTheme.type.body, color = ClawTheme.colors.textMuted)

648+

} else {

649+

ClawSeparatedColumn(items = visibleApps) { app ->

650+

NotificationPackageAppRow(

651+

app = app,

652+

selected = selectedPackages.contains(app.packageName),

653+

onSelectedChange = { selected -> onPackageSelectionChange(app.packageName, selected) },

654+

)

655+

}

656+

if (apps.size > visibleApps.size) {

657+

Text(

658+

text = "Showing ${visibleApps.size} of ${apps.size}. Refine search for more.",

659+

style = ClawTheme.type.caption,

660+

color = ClawTheme.colors.textMuted,

661+

)

662+

}

663+

}

664+

}

665+

}

666+

}

667+

}

668+669+

@Composable

670+

private fun NotificationPackageAppRow(

671+

app: InstalledApp,

672+

selected: Boolean,

673+

onSelectedChange: (Boolean) -> Unit,

674+

) {

675+

Row(

676+

modifier =

677+

Modifier

678+

.fillMaxWidth()

679+

.heightIn(min = 58.dp)

680+

.clickable { onSelectedChange(!selected) }

681+

.padding(vertical = 7.dp),

682+

verticalAlignment = Alignment.CenterVertically,

683+

horizontalArrangement = Arrangement.spacedBy(9.dp),

684+

) {

685+

ClawTextBadge(text = notificationAppBadge(app.label))

686+

Column(modifier = Modifier.weight(1f), verticalArrangement = Arrangement.spacedBy(1.dp)) {

687+

Text(

688+

text = app.label,

689+

style = ClawTheme.type.body,

690+

color = ClawTheme.colors.text,

691+

maxLines = 1,

692+

overflow = TextOverflow.Ellipsis,

693+

)

694+

Text(

695+

text = app.packageName,

696+

style = ClawTheme.type.caption,

697+

color = ClawTheme.colors.textMuted,

698+

maxLines = 1,

699+

overflow = TextOverflow.Ellipsis,

700+

)

701+

}

702+

Switch(checked = selected, onCheckedChange = onSelectedChange)

570703

}

571704

}

572705

@@ -1112,6 +1245,55 @@ private fun cronJobStatus(job: GatewayCronJobSummary): ClawStatus {

11121245

}

11131246

}

111412471248+

internal fun filterNotificationAppsForPicker(

1249+

apps: List<InstalledApp>,

1250+

selectedPackages: Set<String>,

1251+

query: String,

1252+

showSystemApps: Boolean,

1253+

): List<InstalledApp> {

1254+

val normalizedQuery = query.trim().lowercase()

1255+

return apps.filter { app ->

1256+

val selected = app.packageName in selectedPackages

1257+

val visibleByType = showSystemApps || !app.isSystemApp || selected

1258+

val visibleBySearch =

1259+

normalizedQuery.isEmpty() ||

1260+

app.label.lowercase().contains(normalizedQuery) ||

1261+

app.packageName.lowercase().contains(normalizedQuery)

1262+

visibleByType && visibleBySearch

1263+

}

1264+

}

1265+1266+

private fun notificationPackageSelectionSummary(

1267+

mode: NotificationPackageFilterMode,

1268+

selectedCount: Int,

1269+

): String =

1270+

when (mode) {

1271+

NotificationPackageFilterMode.Allowlist ->

1272+

if (selectedCount == 0) {

1273+

"No apps selected. Nothing forwards until you add apps."

1274+

} else {

1275+

"$selectedCount ${if (selectedCount == 1) "app" else "apps"} allowed to forward."

1276+

}

1277+

NotificationPackageFilterMode.Blocklist ->

1278+

if (selectedCount == 0) {

1279+

"No apps blocked. Apps can forward unless you add blocks."

1280+

} else {

1281+

"$selectedCount ${if (selectedCount == 1) "app" else "apps"} blocked from forwarding."

1282+

}

1283+

}

1284+1285+

private fun notificationAppBadge(label: String): String {

1286+

val initials =

1287+

label

1288+

.split(' ', '-', '_', '.')

1289+

.asSequence()

1290+

.filter { it.isNotBlank() }

1291+

.take(2)

1292+

.mapNotNull { it.firstOrNull()?.uppercaseChar()?.toString() }

1293+

.joinToString("")

1294+

return initials.ifBlank { "A" }

1295+

}

1296+11151297

/**

11161298

* Converts cron wake times into short relative labels for scheduled-work rows.

11171299

*/