无法让AdMob正常工作(使用Android,LibGDX)

时间:2014-03-16 15:54:39

标签: java android libgdx admob ads

我做了很多研究,但由于我不熟悉放置应用内广告(这是我第一次制作应用,而且是我第一次工作)广告)。

这是我更新的MainActivity.java代码:

package com.me.mygdxgame;

import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;

import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdSize;
import com.google.android.gms.ads.AdView;

public class MainActivity extends AndroidApplication {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main); //Changed it back to main, got rid of an error

        AndroidApplicationConfiguration cfg = new AndroidApplicationConfiguration();
        cfg.useGL20 = true;

        initialize(new MyGame(), cfg);

        AdView adView;
        adView = new AdView(this);
        adView.setAdSize(AdSize.BANNER);
        adView.setAdUnitId("My Ad Unit ID (just using this string for posting purposes");

        LinearLayout layout = (LinearLayout) findViewById(R.id.normal); //Changed R.id.linearlayout to R.id.normal. After looking at my R.java class, I saw that there was no id.linearlayout, so I changed it to R.id.normal, which did exist.
        layout.addView(adView); //This is line 44, where the NullPointer is caused

        AdRequest adRequest = new AdRequest.Builder().build();

        adView.loadAd(adRequest);
    }
}

这是更新的AndroidManifest XML代码:

   <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.me.mygdxgame"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/testing"
        android:label="@string/app_name" >

        <meta-data android:name="com.google.android.gms.version"
           android:value="@integer/google_play_services_version" />

        <activity
            android:name=".MainActivity"
            android:label="Flappy Nerd"
            android:screenOrientation="portrait"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

         <activity android:name="com.google.android.gms.ads.AdActivity"
             android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

    </application>

</manifest>

这是main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/normal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

</LinearLayout>

这里是logcat:

03-16 16:46:50.126: E/AndroidRuntime(10338): FATAL EXCEPTION: main
03-16 16:46:50.126: E/AndroidRuntime(10338): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.me.mygdxgame/com.me.mygdxgame.MainActivity}: java.lang.NullPointerException
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2305)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2359)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.ActivityThread.access$700(ActivityThread.java:165)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1326)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.os.Handler.dispatchMessage(Handler.java:99)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.os.Looper.loop(Looper.java:137)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.ActivityThread.main(ActivityThread.java:5455)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at java.lang.reflect.Method.invokeNative(Native Method)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at java.lang.reflect.Method.invoke(Method.java:525)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1187)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1003)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at dalvik.system.NativeStart.main(Native Method)
03-16 16:46:50.126: E/AndroidRuntime(10338): Caused by: java.lang.NullPointerException
03-16 16:46:50.126: E/AndroidRuntime(10338):    at com.me.mygdxgame.MainActivity.onCreate(MainActivity.java:44)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.Activity.performCreate(Activity.java:5372)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1104)
03-16 16:46:50.126: E/AndroidRuntime(10338):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2267)

这是一个更新的LogCat:当我拿出似乎导致NullPointers&#34; layout.addView(adView);&#34;的代码行时,应用程序运行良好,但我从以下地方获取这些消息logcat的:

03-16 17:04:06.723: E/GooglePlayServicesUtil(11199): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.

03-16 17:04:09.265: I/Ads(11199): Ad finished loading.

03-16 17:05:09.269: I/Ads(11199): Ad is not visible. Not refreshing ad.

4 个答案:

答案 0 :(得分:1)

您似乎错过了activity文件中广告的Manifest部分:

<activity
   android:name="com.google.android.gms.ads.AdActivity"
   android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />

您必须调整所有路线。如果你可以编译但它不起作用,你可能使用的是AdMob的弃用版本。您必须将google-play_lib外部库导入到项目here's a link中,了解如何执行此操作。

答案 1 :(得分:1)

你的代码太乱了!

您应该修复几个错误。 为避免错误,setContentView(R.layout.main);必须是super.onCreate(savedInstanceState);

之后的第一行

对我来说最令人困惑的是:

为什么你在App RelativeLayout中声明了Manifest必须main.xml内声明。这是NullPointerException的原因。之所以会发生这种情况,是因为R.id.mainLayout在您的布局中找不到此ID,因此layout变量null会在调用时导致崩溃(因为它在您的清单中被错误地声明了)。

答案 2 :(得分:0)

作为@yugidroid,你的代码非常混乱! :P但你最终会得到它,别担心!

最重要的是,不要在你的清单上放置布局,他们不去那里! 在您的文件夹/布局(项目内)中,创建一个名为“activity_main.xml”的新xml文件,并用以下内容填充:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<LinearLayout
    android:id="@+id/linearLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"></LinearLayout>
</RelativeLayout>

在您的java文件中,转到

adView.setAdUnitId("xx-xxx-xxx-1234567890123456/1234567890"); //Change the numbers to what google sent you in the email!!!

和Adrequest更改为

AdRequest adRequest = new AdRequest.Builder().build();

(不推荐用于测试,但现在它会这样做)

我建议您再次阅读文档,但这很简单 https://developers.google.com/mobile-ads-sdk/docs/#play https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals#play

答案 3 :(得分:0)

我打赌你在

上得到了NullPointerException
findViewById(R.id.normal)

几乎可以肯定,使用#initialize方法调用#setContentView并用其他东西替换R.layout.main。