作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当您使用 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" />
override fun onBind(intent: Intent?): IBinder {
TileService.requestListeningState(this,
ComponentName(this, QSTileService::class.java))
return super.onBind(intent)
}
override fun onStartListening() {
super.onStartListening()
updateTile()
}
关于android - 启用 ACTIVE_TILE 时启动时处于 ACTIVE 状态的快速设置磁贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50526153/
我是一名优秀的程序员,十分优秀!