Usted está recibiendo el error Error: bad size 1080*1820
porque debería ser x
y no *
que también se menciona al escribir adb shell wm
:
size [reset|WxH|WdpxHdp] [-d DISPLAY_ID]
Return or override display size.
width and height in pixels unless suffixed with 'dp'.
Por lo tanto, el comando correcto es adb shell wm size 1080x1820
que no dará lugar a ningún error. Puede obtener más información utilizando adb shell wm
que devuelve:
Window manager (window) commands:
help
Print this help text.
size [reset|WxH|WdpxHdp] [-d DISPLAY_ID]
Return or override display size.
width and height in pixels unless suffixed with 'dp'.
density [reset|DENSITY] [-d DISPLAY_ID]
Return or override display density.
folded-area [reset|LEFT,TOP,RIGHT,BOTTOM]
Return or override folded area.
overscan [reset|LEFT,TOP,RIGHT,BOTTOM] [-d DISPLAY ID]
Set overscan area for display.
scaling [off|auto] [-d DISPLAY_ID]
Set display scaling mode.
dismiss-keyguard
Dismiss the keyguard, prompting user for auth if necessary.
set-user-rotation [free|lock] [-d DISPLAY_ID] [rotation]
Set user rotation mode and user rotation.
set-fix-to-user-rotation [-d DISPLAY_ID] [enabled|disabled]
Enable or disable rotating display for app requested orientation.
tracing (start | stop)
Start or stop window tracing.
Lo más probable es que tenga que combinar esto con el otra respuesta mencionada aquí sobre overscan
para encontrar una solución para su caso de uso.
0 votos
Tienes que usar x y no * en el comando.