All Questions
Tagged with facebook-audience-network android-recyclerview
9 questions
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 ...
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 ...
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 ...
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 ...
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. ...
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 ...
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 && ...
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 ...
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 ...