当前位置:操作系统 > 安卓/Android >>

android获得屏幕的大小

final Display display = this.getWindow().getWindowManager().getDefaultDisplay(); 
if (display != null) 

    // 获取屏幕大小  
    screenWidth = display.getWidth(); 
    screenHeight = display.getHeight(); 

final Display display = this.getWindow().getWindowManager().getDefaultDisplay();
if (display != null)
{
 // 获取屏幕大小
 screenWidth = display.getWidth();
 screenHeight = display.getHeight();
}

 

 


摘自 知识空间

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,