Skip to main content

All Questions

Filter by
Sorted by
Tagged with
2 votes
1 answer
625 views

Implement facebook banner ads in recyclerview

I am trying to implement an Facebook banner ad(not native banner) on 3rd position of the recyclerview. I have created an ads_row.xml which has the ad layout. ads_row.xml is displayed properly but ad ...
Chinmay's user avatar
  • 55
0 votes
1 answer
783 views

Facebook Native banner ads displaying duplicate layout in ListView

I'm implementing Facebook Native banner ads in my ListView. The ads are working fine but the empty layout for the ads is also being shown above the ads. Below is my ListView's adapter code: public ...
Dev Sharma's user avatar
0 votes
1 answer
1k views

How to Add Facebook Audience Network Native Ads In Between RecyclerView

I am a beginner at the android studio I have created a recycler view which parses JSON and display in recycler view. I searched the whole internet.,but I could not find a tutorial to place Facebook ...
Nasim's user avatar
  • 125
1 vote
1 answer
2k views

Facebook Native in feed ads are overlapping to each other in RecyclerView

I have an app which has Recyclerview and I want to put some facebook Native ads in between list items, like every 5 list items 1 native ad will be shown. everything is working perfectly but main ...
Ravi's user avatar
  • 319
0 votes
2 answers
2k views

Recyclerview - Facebook Native Ads - Not clickable

I am implementing Facebook Native Ads in RecyclerView. The ads load fine, but the ads are not clickable. Other general items in my RecyclerView are clickable as i implemented OnClickListener for them. ...
Vamsi Challa's user avatar
  • 11.1k
0 votes
1 answer
396 views

Facebook native ads won't click at first and second positions of recycler view

I have an android app where I am using Facebook Audience Network for displaying native ads to my user. I am using a recycler view for displaying a list. The problem that I am facing is that the ads ...
Ezio's user avatar
  • 2,975
0 votes
1 answer
669 views

Android Audience Network Ad doesn't show next Ad

I have RecyclerView, where every 14-th item is a Facebook Audience Network Ad. @Override public int getItemViewType(int position) { int viewType = 0; if (position % 14 == 0 && ...
Peter Parker's user avatar
3 votes
1 answer
936 views

Lags in multiple layouts RecyclerView

I have the RecyclerView with 2 layouts. The first one describes main item and the second is facebook native Ad. It works, but every time the position with NativeViewAd is be shown on the display - we ...
Peter Parker's user avatar
5 votes
2 answers
8k views

Facebook Native Ads in RycyclerView android

I found similar issue Facebook Native ads in recycler view android , but had some problems with integration with Custom Ad. For the first I tried to describe NativeAdsManager : @Override public ...
Peter Parker's user avatar