Androidは画面の幅と高さを取得
Androidは、図面やその他の操作を容易にするために画面の幅と高さを取得し、よく使われる方法は以下の通りです.
画面の大きさを以下のように取得する人もいますが、方法はあまりよくありませんが、記録をしておきます.
DisplayMetrics dm = getResources().getDisplayMetrics();
mScreenWidth = dm.widthPixels;
mScreenHeight = dm.heightPixels;
画面の大きさを以下のように取得する人もいますが、方法はあまりよくありませんが、記録をしておきます.
Display display = getWindowManager().getDefaultDisplay();
Point point = new Point();
try {
Method getRealSize = Display.class.getMethod("getRealSize", Point.class);
getRealSize.setAccessible(true);
getRealSize.invoke(display, point);
iWidth = point.x;
iHeight = point.y;
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}