Android 版本兼容問題集錦(1)

PopupWindow在Android7.0系統(tǒng)中顯示位置錯誤

Android7.0之前,在指定位置彈出popupwindow可以用showAsDropDown(View anchor, int xoff, int yoff),showAtLocation(View parent, int gravity, int x, int y)。但在android7.0上,用showAsDropDown()在popupwindow為全屏?xí)r,會有彈出位置異常情況,需用showAtLocation()才能正常顯示:

一、if(Build.VERSION.SDK_INT <24)

{

dropListPopupWindow.showAsDropDown(this,0,5);

}else{// 適配 android 7.0int[] location =newint[2];

getLocationOnScreen(location);intx = location[0];inty = location[1];

Log.e(getClass().getSimpleName(),"x : "+ x +", y : "+ y);

dropListPopupWindow.showAtLocation(this, Gravity.NO_GRAVITY,0, y + getHeight() +5);

}

二、我們需要重寫popWindows的showAsDropDown方法:

@OverridepublicvoidshowAsDropDown(View anchor) {if(Build.VERSION.SDK_INT >=24) {? ? ? ? ? ? Rect rect =newRect();? ? ? ? ? ? anchor.getGlobalVisibleRect(rect);inth = anchor.getResources().getDisplayMetrics().heightPixels - rect.bottom;? ? ? ? ? ? setHeight(h);? ? ? ? }super.showAsDropDown(anchor);? ? }

我建議第二個比較好

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容