具体而言,我想知道如何在不同的设备上使元素具有相同的尺寸。例如:
tiapp.xml
<property name="ti.ui.defaultunit" type="string">dp</property>
index.tss
".box": {
width: 210,
height: 210,
top: 20,
left: 20
}
框类中的尺寸和边距以像素为单位 - 我没有将它们重新计算为dps,因为我不知道如何。我知道我应该使用这个等式pixels / (Titanium.Platform.displayCaps.dpi / 160)
,但由于我无法在我的tss文件中执行此操作,那么我有哪些选项?如何在具有480x800屏幕和720x1280屏幕的设备上以相同的方式显示此元素?