Ejemplo n.º 1
0
 protected int getWidth() {
   return (int) (Style.getDisplayMetrics().widthPixels * DIALOG_SIZE_WIDTH);
 }
Ejemplo n.º 2
0
 protected boolean isSmallScreen() {
   return Style.getDisplayMetrics().heightPixels < 500;
 }
Ejemplo n.º 3
0
 protected int getHeight() {
   return (int)
       (Style.getDisplayMetrics().heightPixels * (isSmallScreen() ? 1.0f : DIALOG_SIZE_HEIGHT));
 }