adMob rewarded video ad loading really slow
My rewarded video is loading really really slow even for a video ad.
And sometimes it won't load at all.
My app:
I have a MainActivity (where I first init the MobileAd with my app ID).
And then you can go to the "get help" Activity where the rewarded video ad loads and you can watch it in exchange for clues.
I noticed that the video would load only once in the app lifetime. after that, and after go back to the main activity and then return to the "get help", the video won't load.
Like I said, the init of the mobile ads is in the onCreate() of the MainActivity.
in the GetHelpActivity there is an instance of RewardedVideoAd in the class and I am loading the ad in the onResume() of the class.
android admob ads rewardedvideoad
add a comment |
My rewarded video is loading really really slow even for a video ad.
And sometimes it won't load at all.
My app:
I have a MainActivity (where I first init the MobileAd with my app ID).
And then you can go to the "get help" Activity where the rewarded video ad loads and you can watch it in exchange for clues.
I noticed that the video would load only once in the app lifetime. after that, and after go back to the main activity and then return to the "get help", the video won't load.
Like I said, the init of the mobile ads is in the onCreate() of the MainActivity.
in the GetHelpActivity there is an instance of RewardedVideoAd in the class and I am loading the ad in the onResume() of the class.
android admob ads rewardedvideoad
What is your question?
– Vyacheslav
May 31 '17 at 9:17
Why does it take so long for the video to load and why it will load only once in the application lifetime ?
– user3289991
May 31 '17 at 10:21
add a comment |
My rewarded video is loading really really slow even for a video ad.
And sometimes it won't load at all.
My app:
I have a MainActivity (where I first init the MobileAd with my app ID).
And then you can go to the "get help" Activity where the rewarded video ad loads and you can watch it in exchange for clues.
I noticed that the video would load only once in the app lifetime. after that, and after go back to the main activity and then return to the "get help", the video won't load.
Like I said, the init of the mobile ads is in the onCreate() of the MainActivity.
in the GetHelpActivity there is an instance of RewardedVideoAd in the class and I am loading the ad in the onResume() of the class.
android admob ads rewardedvideoad
My rewarded video is loading really really slow even for a video ad.
And sometimes it won't load at all.
My app:
I have a MainActivity (where I first init the MobileAd with my app ID).
And then you can go to the "get help" Activity where the rewarded video ad loads and you can watch it in exchange for clues.
I noticed that the video would load only once in the app lifetime. after that, and after go back to the main activity and then return to the "get help", the video won't load.
Like I said, the init of the mobile ads is in the onCreate() of the MainActivity.
in the GetHelpActivity there is an instance of RewardedVideoAd in the class and I am loading the ad in the onResume() of the class.
android admob ads rewardedvideoad
android admob ads rewardedvideoad
asked May 31 '17 at 9:14
user3289991user3289991
95
95
What is your question?
– Vyacheslav
May 31 '17 at 9:17
Why does it take so long for the video to load and why it will load only once in the application lifetime ?
– user3289991
May 31 '17 at 10:21
add a comment |
What is your question?
– Vyacheslav
May 31 '17 at 9:17
Why does it take so long for the video to load and why it will load only once in the application lifetime ?
– user3289991
May 31 '17 at 10:21
What is your question?
– Vyacheslav
May 31 '17 at 9:17
What is your question?
– Vyacheslav
May 31 '17 at 9:17
Why does it take so long for the video to load and why it will load only once in the application lifetime ?
– user3289991
May 31 '17 at 10:21
Why does it take so long for the video to load and why it will load only once in the application lifetime ?
– user3289991
May 31 '17 at 10:21
add a comment |
2 Answers
2
active
oldest
votes
You can use simple loadAd()
to reload rewarded ad.
inside
RewardedVideoAd mAd;
@Override
public void onAdClosed()
super.onAdClosed();
mAd.loadAd();
https://developers.google.com/admob/android/rewarded-video-adapters
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
add a comment |
Use onRewardedVideoompleted.load
ad in onRewardedVideoCompleted.onAdclosed
will be only called when ad is closed(when user click X).hope it helps
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f44280551%2fadmob-rewarded-video-ad-loading-really-slow%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use simple loadAd()
to reload rewarded ad.
inside
RewardedVideoAd mAd;
@Override
public void onAdClosed()
super.onAdClosed();
mAd.loadAd();
https://developers.google.com/admob/android/rewarded-video-adapters
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
add a comment |
You can use simple loadAd()
to reload rewarded ad.
inside
RewardedVideoAd mAd;
@Override
public void onAdClosed()
super.onAdClosed();
mAd.loadAd();
https://developers.google.com/admob/android/rewarded-video-adapters
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
add a comment |
You can use simple loadAd()
to reload rewarded ad.
inside
RewardedVideoAd mAd;
@Override
public void onAdClosed()
super.onAdClosed();
mAd.loadAd();
https://developers.google.com/admob/android/rewarded-video-adapters
You can use simple loadAd()
to reload rewarded ad.
inside
RewardedVideoAd mAd;
@Override
public void onAdClosed()
super.onAdClosed();
mAd.loadAd();
https://developers.google.com/admob/android/rewarded-video-adapters
answered May 31 '17 at 11:02
VyacheslavVyacheslav
13.9k960120
13.9k960120
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
add a comment |
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
Like I said, the loadAd() function is found in the onResume of the GetHelp activity. The problem is once the ad was loaded in the entire application's lifetime, it won't load again. No matter how many times I will call the loadAd() function.
– user3289991
May 31 '17 at 11:33
add a comment |
Use onRewardedVideoompleted.load
ad in onRewardedVideoCompleted.onAdclosed
will be only called when ad is closed(when user click X).hope it helps
add a comment |
Use onRewardedVideoompleted.load
ad in onRewardedVideoCompleted.onAdclosed
will be only called when ad is closed(when user click X).hope it helps
add a comment |
Use onRewardedVideoompleted.load
ad in onRewardedVideoCompleted.onAdclosed
will be only called when ad is closed(when user click X).hope it helps
Use onRewardedVideoompleted.load
ad in onRewardedVideoCompleted.onAdclosed
will be only called when ad is closed(when user click X).hope it helps
edited Nov 13 '18 at 13:14
Mohammad
15.4k123361
15.4k123361
answered Nov 13 '18 at 12:50
noelnoel
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f44280551%2fadmob-rewarded-video-ad-loading-really-slow%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is your question?
– Vyacheslav
May 31 '17 at 9:17
Why does it take so long for the video to load and why it will load only once in the application lifetime ?
– user3289991
May 31 '17 at 10:21