本帖最后由 psh123 于 2026-5-26 18:09 编辑
起因是在使用爱奇艺万能播放器播放视频时,暂停后右下角会弹出一个二维码弹窗(如下图),感觉很碍眼。
第一步,将万能播放器整个文件夹导入到 IDEA 里面,并且搜索关键词“不再显示”
能看到 只在“mask.xml”中搜索到有“不再显示”;那么这个位置的配置就是我们需要更改的配置;
将这段配置替换为下图所示,发现二维码消除,播放器不报错(这段配置是豆包生成的)
替换的配置如下:
[XML] 纯文本查看 复制代码 <!-- 已彻底禁用扫码弹窗:保留节点结构防报错,同时强制所有控件隐形 -->
<VerticalLayout name="pauseContinuePlay"
visible="false"
width="0" height="0"
pos="9999,9999,0,0"
alpha="0"
enabled="false">
<VerticalLayout width="0" height="0" visible="false" alpha="0">
<Label name="rencodeLabel" width="0" height="0" visible="false" alpha="0"/>
<Label name="tipLabel" width="0" height="0" visible="false" alpha="0"/>
<Button name="nologerShow" width="0" height="0" visible="false" alpha="0"/>
</VerticalLayout >
<Button name="pauseClose" width="0" height="0" visible="false" pos="9999,9999,0,0" alpha="0"/>
</VerticalLayout>
|