inmobi

InMobi ad doesn't appear - Ad request successful but no ad served. NO_FILL

早过忘川 提交于 2020-12-15 06:28:05
问题 I integrated InMobi SDK to my Andorid app, added one ad banner and one fullscreen ad. I enabled test mode on InMobi site ad settings page for my ads and they were showing up ok (test ads). But if I disable this option, then there are no any ads, listener in override fun onAdLoadFailed(p0: InMobiBanner, p1: InMobiAdRequestStatus) prints Ad request successful but no ad served. NO_FILL It's already on Google Play, but still there are no any stats on their site about views, earnings, so nobody

InMobi not getting Banner or Interstitials on first run

风格不统一 提交于 2019-12-24 16:04:07
问题 I've integrated InMobi into my Android App and it doesn't fetch any ads when the app is first run (Banner or Interstitial). If I exit the app and then run it again, everything works - Banner and Interstitial is loaded and the banner is displayed. If I then either uninstall and re-install the app or simply clear the app's cache (from settings) and then run the app again, I'm back to square one and I get nothing. Please note this follows this pattern exactly , it's not random. Always on first

InMobi Does not show any ads

家住魔仙堡 提交于 2019-12-13 05:03:57
问题 I want to implement InMobi ads in my android application. I have download the InMobi SDK and trying to show ads using sample app. I have a valid APP_ID generated from InMobi server and following is the code i have( i am using sample app from INMobi SDK) <com.inmobi.androidsdk.IMAdView android:id="@+id/imAdview" android:layout_width="320dp" android:layout_height="50dp" adSize="15" appId="14c9c64f24004a18ab1c6c718aa07eac" /> And in Activity: mIMAdInterstitial = new IMAdInterstitial(this,

InMobi interstitial ads are not getting displayed android

a 夏天 提交于 2019-12-11 10:15:26
问题 I tried integrating InMobi interstitial ad to my android application by following the instructions mentioned here. Below is the code I have incorporated in my activity class for displaying interstitial ads. I get no exceptions but every time I run the code, the callback method onInterstitialFailed gets called displaying the message "The ad request was successful but no ad was found". Looking forward to responses/solutions interstitial = new IMInterstitial(this, "I mention the property_id");

InMobi ads does not show up on Android?

≡放荡痞女 提交于 2019-12-11 07:59:36
问题 I am trying to implement InMobi ads, but ads do not show up. I have followed the tutorial here : http://www.inmobi.com/support/integration/23817448/22051163/android-sdk-integration-guide/ This is my code; interstitial = new IMInterstitial(this, "my_property_id"); interstitial.loadInterstitial(); if (interstitial.getState() ==IMInterstitial.State.READY) interstitial.show(); interstitial.setIMInterstitialListener(new IMInterstitialListener() { public void onShowInterstitialScreen(IMInterstitial

InMobi Does not show any ads

匿名 (未验证) 提交于 2019-12-03 01:45:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I want to implement InMobi ads in my android application. I have download the InMobi SDK and trying to show ads using sample app. I have a valid APP_ID generated from InMobi server and following is the code i have( i am using sample app from INMobi SDK) <com.inmobi.androidsdk.IMAdView android:id = "@+id/imAdview" android:layout_width = "320dp" android:layout_height = "50dp" adSize = "15" appId = "14c9c64f24004a18ab1c6c718aa07eac" /> And in Activity: mIMAdInterstitial = new IMAdInterstitial ( this , "4028cba631d63df10131e1d3818b00cc

Android change google map padding at runtime

℡╲_俬逩灬. 提交于 2019-11-29 03:52:59
I want to move Google map layout items at runtime, but I'm not able to do it and I don't know if it's possible or not. What I want to do is: I have a Google map fragment which takes up all the screen. I also have an Ad. When app starts, I show the map. Like this: And when the ad loads, I show the ad at the bottom, but I need to move the Google logo above the ad. Like this: I've tried with: if (banner is loaded) googleMap.setPadding(0, 0, 0, banner.getLayoutParams().height); But I had no success. What am I doing wrong? EDIT: Thanks to @SimplePlan, I changed the RelativeLayout where was included

Android change google map padding at runtime

陌路散爱 提交于 2019-11-27 17:46:43
问题 I want to move Google map layout items at runtime, but I'm not able to do it and I don't know if it's possible or not. What I want to do is: I have a Google map fragment which takes up all the screen. I also have an Ad. When app starts, I show the map. Like this: And when the ad loads, I show the ad at the bottom, but I need to move the Google logo above the ad. Like this: I've tried with: if (banner is loaded) googleMap.setPadding(0, 0, 0, banner.getLayoutParams().height); But I had no