在android使用了一個AdMob使圖,沒有高寬設置,等到顯示的時候就溢出。有沒有什麼方法能得到這個通知?我好能調整布局尺寸。
要重寫onLayout
的,
View view = new View(this) {
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
}
};