我非常沮丧!! 我正在尝试在我的应用程序中实现Admob广告...但这是一个史诗般的失败......我浪费了更多时间来实施Admob而不是编写我的应用程序...我真的需要你的帮助。
我给你所有的信息:
我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="package.test.sound"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:icon="@drawable/gg"
android:label="@string/app_name" >
<activity
android:name=".startActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".test1"
android:label="@string/app_name" >
</activity>
<activity
android:name=".test2"
android:label="@string/app_name" >
</activity>
<activity
android:name=".test3"
android:label="@string/app_name">
</activity>
<meta-data android:value="xxxx MY ID xxxx" android:name="ADMOB_PUBLISHER_ID" />
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"></activity>
<uses-sdk android:minSdkVersion="10"/>
</application>
</manifest>
现在我的Main.XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/sc2"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="test1"
android:textColor="#005113" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="test2"
android:textColor="#970000" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="test3"
android:textColor="#001760" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="bottom" >
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
ads:adSize="BANNER"
ads:adUnitId="xxxx MY ID xxxx"
ads:loadAdOnCreate="true" >
</com.google.ads.AdView>
</LinearLayout>
</LinearLayout>
我不知道该怎么做......
我正在使用Admob SDK 4.3.1,我的项目属性在Android 4.0.3上! 我的项目目标设置为:target = android-15。
还有一件事......当我在我的HTC EVO 3D上安装我的APK时,应用程序不是全屏,它在我的屏幕上很少,我不知道为什么......
但我的第一个重大问题是广告没有出现......
当我在eclipse上使用AVD模拟器模拟我的应用程序时,我在LogCats上有这个屏幕调试:http://s4.noelshack.com/old/up/help-c2e97f1a28.jpg
感谢您的帮助!!!
答案 0 :(得分:1)
您似乎无法连接admob服务器。
您可以通过尝试从Android中的终端模拟器ping admob(media.admob.com根据您的屏幕截图)来验证这一点。