如何根据android设备动态设置View Height?
Posted
技术标签:
【中文标题】如何根据android设备动态设置View Height?【英文标题】:How to set View Height dynamiocally based on the android device? 【发布时间】:2014-04-16 07:44:54 【问题描述】:我有一个视图,我正在使用这种方法动态测量设备的屏幕尺寸。
private double getscreenSize()
DisplayMetrics dm = new DisplayMetrics();
getActivity().getWindowManager().getDefaultDisplay().getMetrics(dm);
double x = Math.pow(
((double) (dm.widthPixels) / (double) (dm.densityDpi)), 2);
double y = Math.pow(
((double) (dm.heightPixels) / (double) (dm.densityDpi)), 2);
return Math.sqrt(x + y);
对于 s3 和 s4,它返回 4.58 英寸。但是在 s4 中,视图看起来太小了,而在 s3 中它看起来很完美。
【问题讨论】:
【参考方案1】:使用此代码-
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
int height = metrics.heightPixels;
int width = metrics.widthPixels;
获得高度和宽度后,将其用于您的视图。
【讨论】:
以上是关于如何根据android设备动态设置View Height?的主要内容,如果未能解决你的问题,请参考以下文章