在activity生命周期方法:onCreate(),onStart(),onResume()中調(diào)用View.getWidth()和View.getHeight()方法獲取View的高度是不可行的,因?yàn)榇藭r(shí)布局沒有加載是不可見狀態(tài)。
創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站設(shè)計(jì)制作、網(wǎng)站制作與策劃設(shè)計(jì),定陶網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:定陶等地區(qū)。定陶做網(wǎng)站價(jià)格咨詢:18980820575還有當(dāng)view的可見狀態(tài)為:GONE,時(shí)獲取的寬高也是0;
2. 解決辦法:
(1)直接測(cè)量:
private void first() { int width = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); int height = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); textView.measure(width, height); int height1 = textView.getMeasuredHeight(); int width3 = textView.getMeasuredWidth(); System.out.println("first: 寬: " + width3 + " 高: " + height1); }
(2)添加繪制view之前的監(jiān)聽
private void second() { ViewTreeObserver vto = textView.getViewTreeObserver(); vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() { public boolean onPreDraw() { int height = textView.getMeasuredHeight(); int width = textView.getMeasuredWidth(); System.out.println("second: 寬:" + width + " 高: " + height); return true; } }); }
(3)添加整體布局監(jiān)聽
private void third() { ViewTreeObserver vto = textView.getViewTreeObserver(); vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { public void onGlobalLayout() { textView.getViewTreeObserver().removeGlobalOnLayoutListener( this); int height = textView.getMeasuredHeight(); int width = textView.getMeasuredWidth(); System.out.println("third: 寬:" + width + " 高: " + height); } }); }
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。