A lot of app (like facebook, twitter) have a stream of contents and every n times they put ads (called sponsored posts).
I have an app that show a list of items and I put an admob ad every 6 elements. The list of elements is not fixed and I can have from 0 to 250 items.
With the actually implementation I have a unique ad id so all banner have (obviously) the same content.
So i would create manually +40 ads on AdMob site...and assign programmatically on recycler.
On AdMob I read:
The number of ads on a single screen should not exceed one if the ad
is fixed to the screen top or screen bottom. If the page scrolls, only
one ad should be visible on the screen at a time, and, according to
the AdSense program policies, publishers may place no more than 3 ad
units on one entire page.
How can app like facebook or other show multiple ads on a scrolling page?
Does exist any ad network that permit this?
I don't know how other networks handle things, but you can definitely make this work with AdMob's Native Ads Express. It's a new ad format that AdMob introduced a few weeks ago at I/O 2016.
I would suggest the following:
Register a new ad unit ID at https://apps.admob.com and choose Native Ads Express. You'll only need one. Pick a small template size and a template that works for your app. You can customize colors and fonts to match your UI.
In your activity, maintain a list of NativeExpressAdView objects that you've instantiated and loaded ads into (loading an ad for Native Ads Express works essentially the same as for banners). You should only need a few to start.
When your RecyclerView scrolls to the point that you need an ad, use one from the list and note the index. Then add a new NativeExpressAdView to the end of the list so you can load another ad in case the user keeps scrolling. If the user scrolls back up, you know which NativeExpressAdView goes with which index, and you can act accordingly.
Some things I'd recommend avoiding:
Make sure you don't have more than one ad onscreen at once. This is the big policy concern here. You may need to show an ad once every six items on one device, versus once every eight items on a larger device, etc. The "three ads per page" rule you quote is (I believe) an AdSense rule for websites, and not applicable to AdMob.
Don't load all the ads necessary to fill the entire list at once. 250/6 = ~40 ads, which is a big chunk of data, especially if the user never makes it all the way down.
Related
I am creating an app for Android. It has almost 13 pages(layouts). Should i create a new banner ad for each page in Admob? or just one is enough.
You can choose: it depends on what you mean for "enough":
if you create a banner for each layout you'll have more requests, more fills, but for lower time;
if you create just one banner, you'll have less requests, but the ad will be seen for longer time.
It depends on you, there aren't restrictions in AdMob.
I couldn't find a solid answer for that:
is it valid to put AdMob banner ad inside NavigationDrawer (the drawer shrinks a bit the size of the banner), or is it violates the policy of AdMob?
I don't think it's a good idea to place it there.
So first of all, why do you have an Ad in your app? - To get some revenue from displaying it of course!
Your approach isn't ideal because:
Not all users will click the navigation drawer button in order to see the info you display there, including the ad;
Unless you live in US, you are not getting paid from people just viewing your banner, you need clicks in order to get revenue.
In my opinion, just place the add at the bottom of your activity, like I did in this image.
I have two apps, both have one bottom ad banner, on admob platform it shows the impression number is similiar, but the click number varies much.
I want to know which factor affects the number of click? Why two ads has similar impressions but varies in click number?
Better ad placements and more relatable ads typically get more clicks. Also if you refresh your ads more frequently your impression/click ratio falls.
If you are getting way more clicks that seem suspicious you can report it.
I would suggest to check the other parameters of your report inside Admob admin panel.
Check region, time of impressions, language and the other parameters.
Futhermore, I you want, you can post here your screenshots.
I have few admob sites and for each of them I want to set different filer for the content of the banners.
I want to do some manipulation with admob filter, unfortunately I do not even know the basics.
I want to show ads that contain image and no text (ads with image only)
How to do this ?
I want to show ads that look like this (no phone)
I want to show ads that have phones like this
For #1, if you disable AdSense backfill you can get rid of a lot of these text ads. The AdMob network itself is not guaranteed to only have image ads though, so it doesn't fully solve this problem. In addition, the fill rate on your ad slot would be much lower if you disable backfill, so this is generally not recommended.
For #2 and #3, the AdMob filters that are in place are ad category filters and language filters. As far as I know, there is not support for ad type filters.
Is it against rules of admob placing two ads on one app activity?
The publisher IDs would be equivalent.
If that is against the rules, could you put two ads on one activity but with different publisher IDs?
On Android
From the AdMob help page Tips for Developers & Publishers
The number of ads on a single page should not exceed one if the ad is
fixed to the screen top or screen bottom. If the page scrolls, there
should be a maximum of one ad on the top and one ad on the bottom, and
both ads should not appear on the same page.