Skip to content

Instantly share code, notes, and snippets.

@himalay
Forked from FokkeZB/app.js
Last active August 29, 2015 14:17
Show Gist options
  • Save himalay/22ce6c4ce716ef178c3f to your computer and use it in GitHub Desktop.
Save himalay/22ce6c4ce716ef178c3f to your computer and use it in GitHub Desktop.
http://developer.android.com/guide/topics/resources/providing-resources.html#ScreenAspectQualifier
if ((Ti.Platform.displayCaps.platformWidth / Ti.Platform.displayCaps.platformHeight) < (((Ti.Gesture.orientation === Ti.UI.LANDSCAPE_LEFT)) ? (320 / 240) : (240 / 320)))) {
Ti.API.info('I am LONG');
} else {
Ti.API.info('I am NOTLONG');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment