您需要先 登录 才能评论/回答

全部评论(2)
改下窗口的宽度:
applications_systemui\product\default\volumepanel\src\main\ets\pages\index.ets中
if (configInfo.width > configInfo.height) { // Pad、PC Mode const realWidth = 48; const realHeight = 284; volumeRect = { left: configInfo.width - vp2px(16) - vp2px(realWidth), top: (configInfo.height - vp2px(realHeight) ) / 2, width: vp2px(realWidth) , //pad改这里 height: vp2px(realHeight) }; } else { // Phone Mode const realWidth = 48; const realHeight = 284; volumeRect = { left: configInfo.width - vp2px(16) - vp2px(realWidth), top: configInfo.height * 0.1, width: vp2px(realWidth) , //phone改这里, height: vp2px(realHeight) }; }

2025-09-02 09:50:34