游戏状态 API
使用收藏整理内容 根据您的偏好保存和分类内容。
已发布:
Android 13 (API 级别 33) - Java
使用游戏状态 API,您可以让系统了解游戏当前正在执行的操作(例如:加载关卡、密集的联网游戏、渲染游戏内菜单、显示广告等)。有了这些宝贵的信息,系统能够相应地优化资源和电力。
Java
if ( Build.VERSION.SDK_INT >= Build.VERSION_CODES.S ) {
// Get GameManager from SystemService
GameManager gameManager =
Context.getSystemService(GameManager.class);
GameState gameState = new GameState(false,
GameState.MODE_GAMEPLAY_UNINTERRUPTIBLE);
gameManager.setGameState(gameState);
}
在文档中查看可以通知系统的模式 摘要。将来发现不同的资源消耗模式时,此列表可能会增加。
此页面上的内容和代码示例受 内容许可 中描述的许可证约束。Java 和 OpenJDK 是 Oracle 及其关联公司的商标或注册商标。
上次更新时间为 2024 年 2 月 28 日协调世界时。
[{ "type": "thumb-down", "id": "missingTheInformationINeed", "label":"缺少我需要的信息" },{ "type": "thumb-down", "id": "tooComplicatedTooManySteps", "label":"太复杂/步骤太多" },{ "type": "thumb-down", "id": "outOfDate", "label":"过时" },{ "type": "thumb-down", "id": "samplesCodeIssue", "label":"示例/代码问题" },{ "type": "thumb-down", "id": "otherDown", "label":"其他" }]
[{ "type": "thumb-up", "id": "easyToUnderstand", "label":"易于理解" },{ "type": "thumb-up", "id": "solvedMyProblem", "label":"解决了我的问题" },{ "type": "thumb-up", "id": "otherUp", "label":"其他" }]
{ "lastModified": "上次更新时间为 2024 年 2 月 28 日协调世界时。", "confidential": False }