Back button does not return leadbolt ads view to Android App - html

After an ad is displayed and i hit the back button (on the hardware or adview), leadbolt takes me to a dark screen and doesn't return to my app.
Am using phonegap 1.3.0 and the ad type is a content unlocker.
Any ideas on what i can do about it?

Have you tried to implement this ?
http://docs.phonegap.com/en/1.2.0/phonegap_events_events.md.html#backbutton

Related

Alert without close option

I am using chrome browser and have installed ad blocker plus plugin in it.
When i navigate to a specific page given below.
Times of India news page
I get a alert on the page, which doesn't have a close option as shown in the screen shot. To remove the alert we need to disable Ad block plus. How do we create these kind of alerts and how do we close the alert without disabling ad block plus

Responsive Google Ad doesn't show up on my website

I added a responsive Google Ad to our game's website, which is a simple static bootstrap based site:
http://dealoround.com which will resolve to
https://mrcsabatoth.github.io/DealORoundWebsite/
My problem is that no Ad shows up. First I put the Ad code at the end of the HTML. Then I thought that maybe it doesn't show up, because I'm just running the development version of the website from my local machine, but my AdSense account doesn't have any restrictions on who can display my ad unit. So I pushed my changes to GitHub, but still no luck. Finally I tried to move the code to the footer, also didn't help.
When I inspect the DOM, the ins element is there, but hidden. If I say window.adsbygoogle.push({}) to try to get it alive, nothing changes, but the function returns the value 2, whatever that means (does anyone know?).
I'm total newbie to AdSense. All helps are welcome.
I can see your ad perfectly, but only after I have paused 'AdBlock' on my browser.
See the below screenshot of your site:
Here is a short tutorial on how to disable AdBlock - http://www.wikihow.com/Disable-Adblock

Is a "close" icon necessary in other platforms?

In iOS, one doesn't need to add a close icon for an app. In the rare event that one wants to kill an app they can do it via the OS.
When looking at the cocos2d-x project that is created by default when using the console (v3.1.1), the sample HelloWorld scene places a button on screen to "close" the app.
Is this actually required in ANY platform ? Does it make sense to add this button at all ?
Apple usually rejects on this and Google and Microsoft don't like it.
You can, however, have close buttons on menus or popovers (say, like a pause screen).

why my google dfp(Double Click) can not create mobile ad unit?

I want to create an ad unit to display at mobile devices.After i clicked add ad unit button, i can not find the way to create mobile ad unit.
In the tutorial of offical google dfp ,i've found there's an arrow right aside of the add ad unit button. it's not displayed in my browser.
see my picture below.
That is an old tutorial. DFP recently changed so that there is now only one type of ad unit and it detects whether to serve a mobile or desktop ad automatically.
You can read more about this here: https://support.google.com/dfp_premium/answer/3235135

Using the android backbutton with Dojomobile and phonegap in worklight

Im creating an app (rather big one) with Worklight. When im testing the app in an android phone and press the backbutton it closes the app.. now i want it to go back one page. Right now the page navigation is with dojox mobile implemented system. this way:
<button data-dojo-type="dojox.mobile.ToolBarButton" data-dojo-props="transition:'fade',dir:'1',moveTo:'Contact'" class="buttonHem" style="color:black; font-size:1em;">Kontakta Oss</button>
is there a way to use the android backbutton without having to redo everything?
we have deadline in 2 weeks so there is really no time to redo the app with jquery mobile..
Answers will be appreciated.
If you're talking about a hardware Android back button you have a WL API to override it's behaviour.
WL.App.overrideBackButton(function() { doSomething });
and WL.App.resetBackButton();
The back button functionality should work in Dojo Mobile. Looking at the documentation for ToolBarButton I think what you need to do is use a # in front of your next view for the moveTo attribute. In your example it would be moveTo:'#Contact' Take a look at the moveTo attribute in the doc below for more info.
http://dojotoolkit.org/reference-guide/1.8/dojox/mobile/ToolBarButton.html