(安卓终端)利云酒吧/云管 修改分辨率方法

100X固件,默认娱加/通娱配置页面

新设备默认为1280*720分辨率,画面大、感觉模糊,商家平台内容错位。

一、通过手动安装”娱加配置”apk包方式,进入配置页面”显示器设置”选择分辨率修改

windows环境下,使用adb命令

1.运行cmd命令窗;
2.cd切换到apk存放目录;
3.连接终端:
adb connect [ip]:5555
4.安装娱加桌面apk包:
adb -s [ip]:5555 install -r -t .\TongYu_Desktop-release.apk
5.安装娱加配置apk包:
adb -s [ip]:5555 install -r -t .\part_ytbackground-release.apk
6.(无需此操作)查看包名称:
adb -s [ip]:5555 shell pm list package
7.运行娱加桌面应用(利云桌面):
adb -s [ip]:5555 shell am start com.evideo.tongyu.desktop
8.进入配置:密码evideoadmin,选择"显示器设置"进行修改
(推荐选择1366*768)

9.可不安装娱加桌面直接运行启动配置应用:(不执行4、6、7)
adb -s [ip]:5555 shell am start com.evideo.tongyu.part_ytbackground/.Activity.LoginSettingActivity

10.回到利云云管桌面命令:
adb -s [ip]:5555 shell am start com.evideo.cash.launcher

“adb connect [ip]:5555″连接后执行”adb -s [ip]:5555 shell”进入终端命令行,以上命令可无需每次都输“adb -s [ip]:5555 shell ”

part_ytbackground-release.apk(娱加配置) TongYu_Desktop-release.apk(利云桌面) 自行从娱加/通娱安装目录下提取
adb应用同样。(分别为:终端app 和 EMTxxx远程工具 目录)

_

二、通过adb命令行方式直接修改(不推荐使用该方法)

1.连接终端:
adb connect [ip]:5555
2.进入命令行:
adb -s [ip]:5555 shell
3.查看当前分辨率:
wm size
4.查看当前DPI:
wm density
5.修改分辨率为1366x768:
wm size 1366x768  (推荐)
6.修改DPI为160:
wm density 160  (默认值无需操作)

{推荐可用组合:
size:1366x768  dpi:160
size:1600x900  dpi:180
可自行尝试。(dpi值越大画面图像就越大。值越小越不清晰。)
}

7.重启:
reboot

-
恢复原始分辨率:
adb shell wm size reset
恢复原始像素密度:
adb shell wm density rese

发表评论