Integrate Admob to Android Problem(将 Admob 集成到 Android 问题)
问题描述
I am trying to integrate Admob to android, i end up with no success. The Document says Need to Provide DeviceID to get Ads for Real Devices.Could you please Help me about this. But I m getting ads in the Emulator by setting AdManager.TestEmulator.
It's fairly straight forward to setup with AdMob, I'm using it on several applications. Once you define you application on the AdMob website/control panel you will see your unique ID for your application.
Then you just need to add the AdMob Jar to your project, assuming you're using eclipse easiest way is to create a libs folder in your project folder, copy the admob jar in there and from eclipse, right click it, and go to Build Path/Add to Build Path.
Then open your manifest file and add the following somewhere inside the tag
<meta-data android:value="<YOUR APPLICATION ID FROM ADMOB CONTROL PANEL>" android:name="ADMOB_PUBLISHER_ID" />
Next decide which activity you wish the ad's to appear, I usually place the ad right at the bottom of a LinearLayout so add the following..
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
/>
At the top of your layout definition where you define your xml namespace you will see
xmlns:android="http://schemas.android.com/apk/res/android"
also add a reference to the admob namespace so you will have :
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/net.dbws.fv" **<-- change package (net.dbws.fv) to your package**
Finally create a file named attrs.xml in the values folder and insert the following :
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="com.admob.android.ads.AdView">
<attr name="backgroundColor" format="color" />
<attr name="primaryTextColor" format="color" />
<attr name="secondaryTextColor" format="color" />
<attr name="keywords" format="string" />
<attr name="refreshInterval" format="integer" />
</declare-styleable>
</resources>
Then you should be good to go, I certainly haven't needed to do anything different for real devices as opposed to the emulator, the above should work for you. You don't always see ad's especially the first few times you run the app but if you are seeing ADMOB entries in your logcat output when you run your app then you can be confident it's working.
Regards
这篇关于将 Admob 集成到 Android 问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Admob 集成到 Android 问题


基础教程推荐
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01