Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

에이치의 모바일 앱 개발

Android Device Screen zoom 획득 본문

Android/Android 개발 소스

Android Device Screen zoom 획득

로이누리 2019. 3. 7. 12:42


float displayZoomSize = 1;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
((Activity) getContext()).getWindowManager().getDefaultDisplay().getMetrics(metrics);
displayZoomSize -= (metrics.densityDpi - DisplayMetrics.DENSITY_DEVICE_STABLE) / (float) DisplayMetrics.DENSITY_DEFAULT;
}


'Android > Android 개발 소스' 카테고리의 다른 글

Databinding  (0) 2019.05.15
View-RecyclerView  (0) 2019.02.20
View-ImageView-Picasso-blur  (0) 2019.02.20
View-ImageView-Gradient  (0) 2019.02.20
Battery-Awake, Sleep  (0) 2019.02.20
Comments