Native ads is a type of advertising, that matches the form and function of the platform upon which it appears. They are similar to banners in that they're rectangular ads that you can drop into a layout and size how you like. The key difference is that you can control the ad's presentation details (things like image sizes, fonts, colors, and so on) by uploading a CSS template for your ad unit.
Questions tagged [native-ads]
217 questions
2
votes
0 answers
Androdi AdMob native ad AFMA_ReceiveMessage is not defined (:1)
I was using the admob banner and it works fine.
I have migrated to com.google.android.gms:play-services:9.0.1
and Firebase, I have the new google_services.json
I have created a new native ad unit and I waited 24h.
I'm trying to load the add in the…

SpyZip
- 5,511
- 4
- 32
- 53
2
votes
1 answer
Android - AppoDeal - NativeAds in multiple activities
MainActivity can launch Activities A,B and C and in those last three I want to show NativeAds. I find it an overkill to do this in every activity.
Appodeal.setNativeCallbacks(new NativeCallbacks() {
@Override
public void…

Anonymous
- 4,470
- 3
- 36
- 67
1
vote
0 answers
Native ad Size: Can I use Native ads in the 2 column Grid of recyclerview?
Admob Native ad Size for android: Can I use Native ads in the 2-column Grid of recycler view as I showed in the UI?
Is there any policy restriction of google Admob?

Shahid Altaf
- 83
- 2
- 5
1
vote
0 answers
I have set the aspect ratio for nativeads as Portrait. but only video ads are coming in Full Screen Aspect ratio.. Image ads are still in Landscape
NativeAdOptions nativeAdOptions = new NativeAdOptions.Builder().setMediaAspectRatio(MediaAspectRatio.PORTRAIT).build();
builder = new AdLoader.Builder(context,my_unit_id).withNativeAdOptions(nativeAdOptions);
After doing this the…
1
vote
0 answers
Ad Choice not showing in Native Banner ad
For some ad providers we are not receiving the ad choice icon. As per google the ad without ad choice icon is violation.
So what is the best solution to handle such case where the provider is not sending the ad choice icon?

Amrendra
- 11
- 1
1
vote
1 answer
onAdOpened() of AdListener in Google Admob does not work
I put Admob in the middle of the current RecyclerView. Implemented as follows with native admob.
adLoader = AdLoader.Builder(mContext, mContext.resources.getString(R.string.admob_unit_id))
.forNativeAd { nativeAd ->
if…

H.JiMan
- 269
- 1
- 2
- 10
1
vote
0 answers
How to autoplay Google native ads without having to click play button and remove default controls in android studio
I have implemented native ads in my app on recylerview playing videos automatically. I need video ads to autoplay so as to blend with the experience of my app and I want to remove the default play pause and mute button from the native ads video. I…

Abimbola Michael
- 21
- 2
- 3
1
vote
0 answers
Is there any way to fix this unnecessary space in xml?
Hello I am trying to make an app that shows native ads to users.
I wrote the xml code and java code.
Everything works fine except there is a space between to things (Image and AD Sign)
Here you can see:
[1]: https://i.stack.imgur.com/qVhUz.jpg
I…

Fatih Koc
- 11
- 1
1
vote
0 answers
Flutter native admob is not working on iPhone
I added flutter native admob in my app. It's working very well on Android devices but when I try run the app on IOS devices it turns loading screen. I added my code and also screenshot about this issue. How can I fix that? Thanks in advance.
new…

Berke Ay
- 73
- 5
1
vote
1 answer
AdMob Native ad loading but not showing
I'm using Google AdMob to display native ads on my app. I made everything as in the Google Documentation. After testing, I figured out that test ad values are loading successfully since they aren't nil and when I print them, I can see them as they…

Didami
- 210
- 2
- 14
1
vote
0 answers
My ad tableviewcell is unclickable, but the ad shows up
My ad shows up on the tableviewcell, but for some reason I cannot navigate to the apps website when I click the ad, why is that?
Here is my code in cellforrowat function:
let cell = Bundle.main.loadNibNamed("NativeAdTableViewCell", owner: self,…

Benjamin Sloutsky
- 163
- 1
- 11
1
vote
1 answer
Admob advance native ads fetch in background?
Loading admob ads makes the app startup really laggy, it looks like admob uses WKWebview which runs on the UI thread.
Is it ok if i fetch (fetch data without displaying them) the ads in the background and keep them in memory so that when the app…

aryaxt
- 76,198
- 92
- 293
- 442
1
vote
0 answers
What are some causes of "Ad failed to load : 3" when fetching native ads?
I'm trying to use the Native Templates for Google AdMob native ads, but I can't even get test ads to load. My main activity looks like this:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
…

user3210986
- 211
- 2
- 9
1
vote
2 answers
How to implement Native Ads without MediaView
I want to implement Native Ads in RecyclerView without MediaView, So referred to this tutorial after following this I successfully implemented native ads in RecyclerView but my need is to load only icon, heading, advertiser and call to action button…

mishracodes
- 33
- 9
1
vote
1 answer
How to properly handle the lifecycle of Admob's UnifiedNativeAd?
Background
I'm trying to implement support for native ads from Admob.
The problem
I've noticed this requirement:
Ensure that all UnifiedNativeAd references are destroyed in your
activity's onDestroy() method.
In your onUnifiedNativeAdLoaded…

android developer
- 114,585
- 152
- 739
- 1,270