Android Question DevicePhysicalSize maybe incorrect ?

little3399

Active Member
Licensed User
Longtime User
Hi ,

I found the DevicePhysicalSize seem maybe incorrect , here is my code and the result :

my code:
Dim lv As LayoutValues

lv = GetDeviceLayoutValues
Label1.Text="ApproximateScreenSize:"
Label2.Text=lv.ApproximateScreenSize
Label3.Text="Scale:"
Label4.Text=lv.Scale
Label5.Text="Height:"
Label6.Text=lv.Height
Label7.Text="Width:"
Label8.Text=lv.Width
Label9.Text="DevicePhysicalSize:"
Label10.Text=Scale.GetDevicePhysicalSize

result:
upload_2014-6-4_14-12-15.png


upload_2014-6-4_14-16-36.png


My question is they are all correct ?
 
Top