Android開發 獲取螢幕高度和寬度

2021-06-21 14:18:02 字數 1048 閱讀 8247

在開發的某些時候,需要獲取螢幕的高度和寬度,下面有兩種方法,大家可以試一下。

方法一:

windowmanager wm = (windowmanager) this.getsystemservice(context.window_service);  

int width = wm.getdefaultdisplay().getwidth();//螢幕寬度

int height = wm.getdefaultdisplay().getheight();  

方法二:

displaymetrics  dm = new displaymetrics();    

getwindowmanager().getdefaultdisplay().getmetrics(dm);    

int screenwidth = dm.widthpixels;              

int screenheight = dm.heightpixels;  

注意,第二種方法要匯入import android.util.displaymetrics;這個類。

600的bitmap轉螢幕寬度

bitmap bitmap = getresizebitmap(drawer.drawimage(minforeader));

private bitmap getresizebitmap (bitmap bitmap)

在view中:

displaymetrics  dm = getcontext().getresources().getdisplaymetrics(); 

int screenwidth = dm.widthpixels;

int screenheight = dm.heightpixels;

Android獲取螢幕寬度高度

方法一 windowmanager wm windowmanager this getsystemservice context.window service int width wm.getdefaultdisplay getwidth int height wm.getdefaultdispla...

獲取螢幕高度

想要網頁自適應,無論如何都要先獲取螢幕高度,給最外層的div,有利於也裡面的布局。vue中獲取螢幕寬高的方法 data 這些引數是什麼意思?根據你的需求選擇吧 window.innerwidth 瀏覽器視口 viewport 寬度 單位 畫素 如果存在垂直滾動條則包括它。document.docum...

jquery獲取螢幕高度

jquery獲取螢幕高度 window height 瀏覽器當前視窗可視區域高度 document height 瀏覽器當前視窗文件的高度 document.body height 瀏覽器當前視窗文件body的高度 document.body outerheight true 瀏覽器當前視窗文件bo...