화면(screen) 사이즈 구하는 법 (How to get display size)
뿌리튼튼 CS/Android2015. 6. 23. 16:42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 |
private int displayWidth, displayHeight;
private void getDisplaySize() {
Display display = ((WindowManager) this.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
if(android.os.Build.VERSION.SDK_INT >= 13) {
Point point = new Point();
display.getSize(point);
displayWidth = point.x;
displayHeight = point.y;
}
else {
displayWidth = display.getWidth();
displayHeight = display.getHeight();
}
} |
cs |
display.getWidth()와 display.getHeight()가 Deprecated 되어있다면, 위와 같이 해결하면 된다.
'뿌리튼튼 CS > Android' 카테고리의 다른 글
진동 울리기 (How to make an Android device vibrate) (0) | 2015.06.30 |
---|---|
Service가 동작중인지 확인 (How to check if my service is running or not) (0) | 2015.06.24 |
dp 단위로 set하고 싶을 때 (How to convert dps to pixels) (0) | 2015.06.18 |
D/skia: --- decoder->decode returned false (0) | 2015.06.16 |
File to Byte Array (File을 Byte배열로 변환) (0) | 2015.06.12 |