AI2 Component  (Version nb184)
JellybeanUtil.java
Go to the documentation of this file.
1 // -*- mode: java; c-basic-offset: 2; -*-
2 // Copyright 2009-2011 Google, All Rights reserved
3 // Copyright 2011-2015 MIT, All rights reserved
4 // Released under the Apache License, Version 2.0
5 // http://www.apache.org/licenses/LICENSE-2.0
6 package com.google.appinventor.components.runtime.util;
7 
8 import android.graphics.Point;
9 import android.util.DisplayMetrics;
10 import android.util.Log;
11 import android.view.Display;
12 
17 public class JellybeanUtil {
18 
19  private JellybeanUtil() {
20  }
21 
22  public static void getRealSize(Display display, Point outSize) {
23  display.getRealSize(outSize);
24  }
25 
26 }
com.google.appinventor.components.runtime.util.JellybeanUtil
Definition: JellybeanUtil.java:17
com.google.appinventor.components.runtime.util.JellybeanUtil.getRealSize
static void getRealSize(Display display, Point outSize)
Definition: JellybeanUtil.java:22