Check device resolution

Just starting out? Need help? Post your questions and find answers here.
matty47
Posts: 7
Joined: Mon Mar 24, 2014 9:06 am

Check device resolution

Post by matty47 »

How can I check the device resolution on android with Spiderbasic? I tried a small program using ExamineDesktop but this seems to give an incorrect answer. I would like to be able to make an app that adapts to different screen resolutions. Thanks.
User avatar
Peter
Posts: 1093
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: Check device resolution

Post by Peter »

Android: Test resolution screen: viewtopic.php?f=13&t=1288
matty47
Posts: 7
Joined: Mon Mar 24, 2014 9:06 am

Re: Check device resolution

Post by matty47 »

Thanks for the link. Was able to take some of the code.
Minimal example that worked OK

Code: Select all

CloseDebugOutput()
 Global width, height
 
  !v_width = screen.width * window.devicePixelRatio;
  !v_height = screen.height * window.devicePixelRatio;
  
  result =MessageRequester("Resolution: "+Str(width)+" x "+Str(height),#PB_MessageRequester_Ok)
  
  If result
    End
 EndIf
Post Reply