android
안드로이드 화면 사이즈 구하기
carbo
2017. 3. 20. 16:34
public static int getScreenWidth() {
return Resources.getSystem().getDisplayMetrics().widthPixels;
}
public static int getScreenHeight() {
return Resources.getSystem().getDisplayMetrics().heightPixels;
}