你在 B 站问了我,我在这回你一下
首先,高德是二次修改过的,真假了一些代码以及删除了一些代码,具体的话可以对比一下官方包和修改包的区别
关于如何启动悬浮窗 /画中画,看下面代码
```
private void showMap() {
Intent intent = new Intent();
intent.setAction("com.autonavi.plus.showmap");
intent.putExtra("x", 0);
intent.putExtra("y", 0);
intent.putExtra("w", 0);
intent.putExtra("h", 0);
sendBroadcast(intent);
}
private void hideMap() {
Intent intent = new Intent();
intent.setAction("com.autonavi.plus.closemap");
sendBroadcast(intent);
}
```
其中你需要替换具体的值
发送具体的广播就可以让高德悬浮起来了(请注意,悬浮窗权限一定要给)
详细效果和下载请看这个文章
[领克 05/领克 01HY3.1 高德地图开启画中画功能]
https://www.bilibili.com/video/BV1KM411P7Hu/?share_source=copy_web&vd_source=758d3c51534003ffa4c7c8489ce795cf