百度地图API学习之路(3)
2020-12-13 03:35
阅读:191
标签:百度地图 (1)SDK提供的缩放比例,大概是指每厘米长度在实际中的距离。 (2)获取设备的物理尺寸 (3)dpi是每英寸像素点数 百度地图API学习之路(3),搜素材,soscw.com 百度地图API学习之路(3) 标签:百度地图 原文地址:http://nemomojie.blog.51cto.com/5145862/1431738 DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
double x = Math.pow(dm.widthPixels/dm.xdpi,2);
double y = Math.pow(dm.heightPixels/dm.ydpi,2);
double screenInches = Math.sqrt(x+y);
Log.d("debug","Screen inches : " + screenInches);
评论
亲,登录后才可以留言!