android 실제 해상도와 비실제 해상도
//1794/1080 1794/1080 =1.66111
this.smartScreenHeight= screenSize.height/screenSize.width>=1.8f? (float) (1.6611111111111111111111111111111f * screenSize.width) :screenSize.height;
// this.smartScreenHeight=screenSize.height;
이 코드는 문제를 해결하는 것이다. 이 문제는 넓이와 높이가 너무 길어서 단추가 너무 높고 못생긴 버그이다.그리고 여기에 실제 높이를 얻는 방법이 있어요.
}
/**
* ,
*
* @return
*/
public static int getRawScreenHeight(Context context) {
WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
Display display = wm.getDefaultDisplay();
int width = display.getWidth();
int height = wm.getDefaultDisplay().getHeight();
DisplayMetrics dm = new DisplayMetrics();
@SuppressWarnings("rawtypes")
Class c;
int dpi;
try {
c = Class.forName("android.view.Display");
@SuppressWarnings("unchecked")
Method method = c.getMethod("getRealMetrics", DisplayMetrics.class);
method.invoke(display, dm);
dpi = dm.heightPixels;
return dpi;
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
비율에 따라 자기 핸드폰의 높이를 가늠해 보세요.
this.smartScreenHeight = screenSize.width * (667f / 375f);// 1080 1920.96
Log.w("CALC_HEIGHT",this.smartScreenHeight+"");
= *(667/375)
=( /667)*
//
667
/667 *
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.