React Native 中的尺寸都是無單位的,表示的是與設(shè)備像素密度無關(guān)的邏輯像素點。
window.devicePixelRatio設(shè)備上是物理像素和設(shè)備獨立像素(device-independent pixels (dips))的比例。
公式表示就是:window.devicePixelRatio = 物理像素 / dips
在iOS設(shè)備,screen.width乘以devicePixelRatio得到的是物理像素值。
在Android以及Windows Phone設(shè)備,screen.width除以devicePixelRatio得到的是設(shè)備獨立像素(dips)值。