我必须支持屏幕分辨率为1280 * 800(dp)(KitKat)和1280 * 752(dp)(Lollipop)的Android设备。第一个是10.1英寸平板电脑,第二个是9.6英寸平板电脑。
我对所有设备使用相同的布局,并使用外部尺寸来调整不同屏幕的布局。
但是我无法使用" values-sw720dp"来分离设备。和" values-sw800dp"。如果我使用sw800dp,它们都使用sw800dp dimen文件夹中的dimen值。
如何为这两个设备分别提供尺寸?
答案 0 :(得分:0)
以编程方式获取设备的screnn英寸和appy维度
public static double getDeviceInches(Activity activity) {
DisplayMetrics metrics = getMetrics(activity);
int widthPixels = metrics.widthPixels;
int heightPixels = metrics.heightPixels;
float widthDpi = metrics.xdpi;
float heightDpi = metrics.ydpi;
float widthInches = widthPixels / widthDpi;
float heightInches = heightPixels / heightDpi;
return getDiagonalInches(widthInches, heightInches);
}
private static double getDiagonalInches(float widthInches, float heightInches) {
double diagonalInches = Math.sqrt((widthInches * widthInches) + (heightInches * heightInches));
float roundedValue = (float) Math.round(diagonalInches);
return (double)roundedValue;
}
//From this, we can get the information required to size the display:
private static DisplayMetrics getMetrics(Activity activity) {
DisplayMetrics metrics = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
return metrics;
}
public static int convertDpToPx(Context context, int value) {
// Get the screen's density scale
final float scale = context.getResources().getDisplayMetrics().density;
// Convert the dps to pixels, based on density scale(0.5f is for rounding up value) (arrowWidth is 50dp)
int pxValue= (int) (value * scale + 0.5f);
return pxValue;
}
将您的上述代码放在实用程序类中,并从您的acitivty或fragment类调用getDeviceInches方法