类:Volume
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[[["\u003cp\u003eRepresents the current volume level and mute status of a media session stream.\u003c/p\u003e\n"],["\u003cp\u003eProvides a \u003ccode\u003elevel\u003c/code\u003e property (ranging from 0.0 to 1.0) to indicate the stream's volume.\u003c/p\u003e\n"],["\u003cp\u003eIncludes a \u003ccode\u003emuted\u003c/code\u003e property (boolean) to indicate whether the stream is muted.\u003c/p\u003e\n"]]],["The `Volume` class represents a media stream's volume. It has two properties: `level`, a number from 0.0 to 1.0 representing the current volume level (0.5 being half volume), and `muted`, a boolean indicating whether the stream is muted (true) or not. The class includes a constructor `new Volume()`. These properties allow for managing and representing the volume status of a media session.\n"],null,["# Class: Volume\n\ncast.[framework](/cast/docs/reference/web_receiver/cast.framework).[messages](/cast/docs/reference/web_receiver/cast.framework.messages).Volume\n===============================================================================================================================================\n\nclass static\n\nRepresents the volume of a media session stream.\n\nConstructor\n-----------\n\n### Volume\n\nnew\nVolume()\n\nProperties\n----------\n\n### level\n\n(number or undefined)\n\nA value that represents the current stream volume level, ranging from\n`0.0` to `1.0`. For example a value of `0.5` would reflect the volume\nat half of its maximum.\n\n### muted\n\n(boolean or undefined)\n\n`true` indicates that the stream is muted."]]