화면 해상도 및 dp 및 픽셀 관계 가져오기

1348 단어 해상도
DisplayMetrics metric = new DisplayMetrics();  
        getWindowManager().getDefaultDisplay().getMetrics(metric);  
        int width = metric.widthPixels;     //     (  )  
        int height = metric.heightPixels;   //     (  )  
        float density = metric.density;      //     (0.75 / 1.0 / 1.5)  
        int densityDpi = metric.densityDpi;  //     DPI(120 / 160 / 240)  

        Log.d("tiandandan", "width height density densityDpi" + width + " || " + height + " || " + density + " || " + densityDpi + " || ");
        System.out.println("width height density densityDpi" + width + " || " + height + " || " + density + " || " + densityDpi + " || ");

 

960*540의 화면 실험을 거쳤다


04-27 14:48:04.489: I/System.out(12361): width height density densityDpi540 || 960 || 1.5 || 240 ||
그러면 화면의 너비 dp 값은 다음과 같습니다.
540을 1.5 = 360으로 나누면 컨트롤이 360dp 넓이로 설정되면 화면이 가득 차요.
하하~ 이런 식으로~
http://my.eoe.cn/xuliangbo/archive/3136.html

좋은 웹페이지 즐겨찾기