lunedì 3 ottobre 2011

Android: Dimensioni ed orientamento dello schermo


/* Ottenere il display da WindowManager */
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
           
/* Ricavare tutte le info che servono */
int width = display.getWidth();
int height = display.getHeight();
int orientation = display.getOrientation();

Nessun commento: