Did you set any of these properties in the code ?
ListView1.SingleLineLayout.xxx
ListView1.TwoLinesLayout.xxx
ListView1.TwoLinesAndBitmap.xxx
If yes you need to use a scaling for those.
scale = 1 + rate * ((100%x + 100%y) / (320dip + 430dip) - 1)
ListView1.SingleLineLayout.ItemHeight = 40 * scale
ListView1.SingleLineLayout.Label.TextSize = 16 * scale
' etc
Where rate is the value of the ScaleRate you used in the DesignerScripts and 40 and 16 only example values.