tufanv Expert Licensed User Longtime User Nov 21, 2021 #1 Hi, For some reason, we don't have banner large size in our admob library. I don't want to use another lib as it may create dependency problems in the future. Is there any way to use with inline code? Thanks
Hi, For some reason, we don't have banner large size in our admob library. I don't want to use another lib as it may create dependency problems in the future. Is there any way to use with inline code? Thanks
tufanv Expert Licensed User Longtime User Nov 21, 2021 #2 We can define a custom size with the following java code: AdSize adSize = new AdSize(300, 50); It looks like simple but I dont have any experience in java, any way to use it? Upvote 0
We can define a custom size with the following java code: AdSize adSize = new AdSize(300, 50); It looks like simple but I dont have any experience in java, any way to use it?
P Pendrush Well-Known Member Licensed User Longtime User Nov 21, 2021 #3 All possible sizes you can see here. Probably best solution is to use Adaptive banner. Edit: Large banner really missing in size constants. Last edited: Nov 21, 2021 Upvote 0
All possible sizes you can see here. Probably best solution is to use Adaptive banner. Edit: Large banner really missing in size constants.
P Pendrush Well-Known Member Licensed User Longtime User Nov 23, 2021 #4 Large banner example. Attachments AdMobLargeBanner.zip 9.3 KB · Views: 230 Upvote 0
P Pendrush Well-Known Member Licensed User Longtime User Nov 23, 2021 #5 tufanv said: AdSize adSize = new AdSize(300, 50); Click to expand... Banner custom size example. Attachments AdMobBannerCustomSize.zip 9.3 KB · Views: 190 Upvote 0
tufanv Expert Licensed User Longtime User Nov 23, 2021 #6 Thanks! Pendrush said: Banner custom size example. Click to expand... Upvote 0