본문 바로가기
프로그래밍/Android

Android 해상도별 좌표값

by CaffeLatte 2013. 2. 17.

Android 해상도별 좌표값

x, y : 좌표값
rx(resolution x), ry(resolution y) : 기준이 되는 해상도 x, y
crx(change resolution x), crx(change resolution y) : 변경할 해상도 x, y

예) 비트맵을 하나 그린다고 한다면..
bitmap : Bitmap 인스턴스
paint : Paint 인스턴스

void onDraw(Canvas c) {
    c.drawBitmap(bitmap, x * crx / rx, y * cry / ry, paint);
}

댓글