0

アプリに AdMob 広告を追加しようとしています。ここの指示に従いました: https://developers.google.com/mobile-ads-sdk/docs/android/fundamentals実行しようとすると、次のエラーが発生します:

 06-01 19:16:23.337: E/AndroidRuntime(30602): FATAL EXCEPTION: main
 06-01 19:16:23.337: E/AndroidRuntime(30602): java.lang.RuntimeException: Unable to    start activity ComponentInfo{com.ComedyZone/com.ComedyZone.MainActivity}: java.lang.NullPointerException
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1696)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1716)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.ActivityThread.access$1500(ActivityThread.java:124)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:968)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.os.Handler.dispatchMessage(Handler.java:99)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.os.Looper.loop(Looper.java:130)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.ActivityThread.main(ActivityThread.java:3806)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at java.lang.reflect.Method.invokeNative(Native Method)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at java.lang.reflect.Method.invoke(Method.java:507)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at dalvik.system.NativeStart.main(Native Method)
 06-01 19:16:23.337: E/AndroidRuntime(30602): Caused by: java.lang.NullPointerException
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at com.ComedyZone.MainActivity.onCreate(MainActivity.java:37)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1660)
 06-01 19:16:23.337: E/AndroidRuntime(30602):   ... 11 more

MainActivity.java:

package com.ComedyZone;

import android.content.Intent;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.LinearLayout;
import android.widget.ListView;

import com.actionbarsherlock.app.SherlockListActivity;
import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.view.MenuItem;
import com.google.ads.*;


public class MainActivity extends SherlockListActivity {
public static int THEME = R.style.Theme_Sherlock;
private AdView adView;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);        

    String[] countries = getResources().getStringArray(R.array.jokes_array);
    setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, countries));

    ListView lv = getListView();
    lv.setTextFilterEnabled(true);

 // Create the adView
    adView = new AdView(this, AdSize.BANNER, "a14fc778668df3b");

    // Lookup your LinearLayout assuming it’s been given
    // the attribute android:id="@+id/mainLayout"
    LinearLayout layout = (LinearLayout)findViewById(R.id.mainLayout);

    // Add the adView to it
    layout.addView(adView);

    // Initiate a generic request to load it with an ad
    adView.loadAd(new AdRequest());
  }

  @Override
  public void onDestroy() {
    if (adView != null) {
      adView.destroy();
    }
    super.onDestroy();
  }


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    menu.add("Options")
    .setIcon(R.drawable.ic_options)
    .setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    Intent intent = new Intent(this, Preferences.class);
    startActivity(intent);
    return true;
}
}

Main.xml:

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

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp" >
</TextView>

<ListView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

</LinearLayout>

マニフェスト:

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

    <uses-sdk android:minSdkVersion="7" />

    <uses-permission android:name="android.permission.INTERNET"/>
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.Sherlock.Light">
        <activity android:name="com.ComedyZone.Preferences" />
        <activity
            android:name=".MainActivity"
            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="com.google.ads.AdActivity"
              android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
    </application>
</manifest>
4

2 に答える 2

2

setContentView(R.layout.your_layout)あなたのコードでは見逃されています!!

使用するとnullpointer例外が発生します

layout.addView(adView);

コードをデバッグしてみてください!!

ListActivityにデフォルトで ListView が含まれている ListView を表示するだけの場合、ListActivity にsetContentView()メソッドを使用してレイアウトを割り当てる必要はありません。

さらにビューを含める必要がある場合 (広告の場合)、ListActivity に ListView を追加しても、アクティビティにレイアウトを割り当てることができます。この場合、レイアウトには android:id 属性が@android:id/listに設定された ListView が含まれている必要があります。

あなたの SherlockListActivity は ListActivity から拡張されていると思います。それは私が上で言ったことであり、あなたが世話をするべきです!!

<ListView
  android:id="@android:id/list"
  android:layout_width="match_parent"
  android:layout_height="wrap_content" >
</ListView>

android:id="@+id/list"に変更android:id="@android:id/list"

リスト アクティビティは、リストビュー用に Android SDK のデフォルト ID を使用します。これはandroid:id="@android:id/list"であり、覚えておく必要があります!!

于 2012-06-02T01:37:14.520 に答える
1

ListActivity を使用していて、使用していないため、NullPointerException が発生しますsetContentView(R.layout.main)layoutnull

https://developers.google.com/mobile-ads-sdk/docs/android/fundamentalsの例を詳しく見てください。

1 つの解決策は、XML でそれを行うことです。

AdView を Java で作成するのではなく、完全に XML で設定することもできます。簡単に行うには:

https://developers.google.com/mobile-ads-sdk/docs/android/banner_xml

広告が表示されないという問題は、必要な最小サイズに関連しています。AdMob ビューは 320 x 50 以上である必要があります。そうでない場合、アプリケーションに広告が表示されることはありません。

https://developers.google.com/mobile-ads-sdk/docs/android/intermediate?hl=nl#bannersizes

次のようなことを試してください:

Main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:orientation="vertical">
       <LinearLayout android:layout_width="fill_parent"
                  android:id="@+id/home_layout"
                  android:orientation="vertical"
                  android:layout_height="wrap_content">
         <ListView 
            android:id="@id/android:list" 
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" />
     </LinearLayout>

    <LinearLayout android:layout_width="fill_parent"
                      android:id="@+id/ad_layout"
                      android:layout_height="wrap_content"
                      android:gravity="bottom"
                      android:layout_alignParentBottom="true"
                      android:layout_alignBottom="@+id/home_layout">

     <com.google.ads.AdView android:id="@+id/adView"
                             android:layout_width="fill_parent"
                             android:layout_height="wrap_content"
                             ads:adUnitId="youaddunitid"
                             ads:adSize="BANNER"
                             android:gravity="bottom"
                             ads:testDevices="TEST_EMULATOR, yourphoneid"
                             ads:loadAdOnCreate="true"/>
    </LinearLayout>
</RelativeLayout>

MainActivity.java:

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);        
        setContentView(R.layout.main);
        String[] countries = getResources().getStringArray(R.array.jokes_array);
        ListView lv = getListView();

        lv.setTextFilterEnabled(true);
        lv.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, countries));
}

これはテスト済みで、動作しています

于 2012-06-02T01:20:05.040 に答える