UGUI针对Android五花八门分辨率的屏幕自适应。
- Canvas 选择Screen Space-Camera 模式。
- Canvas 设置成Orthographic模式。
- Canvas Scaler 选择 Scale With Screen Size,并且 Screen Match Mode 选择 Match Width Or Height, 比例设置为0,只和宽度进行适配。
代码上的处理:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| void InitResolution() { if (ClientConfig.PLATFORM != PlatformType.Android) { return; }
int width = Screen.currentResolution.width; int height = Screen.currentResolution.height; int targetWidth = 960; int targetHeight = 640;
if (width <= targetWidth || height <= targetHeight) return;
float targetRatio = targetWidth / (float)targetHeight; float currentRatio = width / (float)height;
if (targetRatio < currentRatio) { targetWidth = (int)Mathf.CeilToInt(targetHeight * currentRatio); } else if (targetRatio > currentRatio) { targetHeight = (int)Mathf.FloorToInt(targetWidth / currentRatio); } Screen.SetResolution(targetWidth, targetHeight, true); }
|
基本是这样,现在似乎有一款手机(哪一款忘记了)屏幕宽度是高度的2倍+的,这个要特殊处理下,
直接把Canvas Scaler 的 Match Width Or Height 比例设置成1。