gpt4 book ai didi

android - 启用 ACTIVE_TILE 时启动时处于 ACTIVE 状态的快速设置磁贴

转载 作者:行者123 更新时间:2023-12-04 19:27:55 26 4
gpt4 key购买 nike

当您使用 META_DATA_ACTIVE_TILE , onStartListening() TileService 回调,当你调用 TileService.requestListeningState() 时会触发更新 Tile 状态。

它可以工作,但是当设备启动时,Tile 处于 ACTIVE 状态,直到您单击它。如果 ACTIVE_TILE 未设置,则磁贴在启动时保持在 INACTIVE 状态。

如何解决?

安卓 7.1.2

最佳答案

我认为在这种情况下文档不是那么清楚。我遇到了同样的问题,经过几次尝试,我找到了适合我的情况的解决方案。

list 保留:

<meta-data android:name="android.service.quicksettings.ACTIVE_TILE"
android:value="true" />

然后在 quickTileService 中重写 onBind 并调用 RequestListeningState:
override fun onBind(intent: Intent?): IBinder {
TileService.requestListeningState(this,
ComponentName(this, QSTileService::class.java))
return super.onBind(intent)
}

在 onStartListening 您可以更新您的磁贴:
override fun onStartListening() {
super.onStartListening()
updateTile()
}

关于android - 启用 ACTIVE_TILE 时启动时处于 ACTIVE 状态的快速设置磁贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50526153/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com