Android Question How can I determine if the user has a pad or phone?

DonManfred

Expert
Licensed User
Longtime User
B4X:
    If GetDeviceLayoutValues.ApproximateScreenSize > 6 Then
        Log("Tablet")
    Else
        Log("Phone")
    End If
 
Upvote 0
Top