I have successfully integrate AdWhirl (v3.0) with AdMob in InMobi. Now when my app changes ad from let's say AdMob to InMboi strange animation appears (some white backgrounded InMobi animation).
I also have problem with heights of ads. Code snippet here
int diWidth = 320;
int diHeight = 52;
float density = mContext.getResources().getDisplayMetrics().density;
adWhirlLayout.setMaxWidth((int) (diWidth * density));
adWhirlLayout.setMaxHeight((int) (diHeight * density));
Problem is that this setMaxHeight
does set height to 52 * density but InMobi uses 48 * density. And because of that there is white space below InMobi ad.
Is there (in AdWhirl) any event that I can handle ad change? Any event for handling animations?
Any ideas for solution of these two problems relating AdWhirl?
10x
Regards