Android:Google Admob示例问题

时间:2011-05-22 16:09:00

标签: android admob

我正在尝试使用基本要素创建一个示例admob应用程序。我按照指示操​​作,甚至复制了此站点的大部分代码:http://code.google.com/mobile/ads/docs/android/fundamentals.html,但应用程序仍在我的VD和我的真实设备上强制关闭。调试器在以下行给出“RuntimeException”:layout.addView(adview)。我确信这有一个简单的解决方案,但我无法弄清楚。我一直在搜索,但大多数在线信息都是针对谷歌之前的adob - 使用了不同的程序。

这是我的MainActivity(我唯一的活动):

public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // Create the adView
    AdView adView = new AdView(this, AdSize.BANNER, "a14dc6ed8aead31");
    LinearLayout layout = (LinearLayout)findViewById(R.layout.main);
    layout.addView(adView); //RuntimeException at this line
    AdRequest request = new AdRequest();
    request.setTesting(true);
    adView.loadAd(request);
}

继承我的logcat错误输出:

05-22 17:49:24.534:ERROR / AndroidRuntime(19619):引起:java.lang.NullPointerException

05-22 17:49:24.534:ERROR / AndroidRuntime(19619):at com.example.admobsample.MainActivity.onCreate(MainActivity.java:22)

05-22 17:49:24.534:ERROR / AndroidRuntime(19619):在android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)

05-22 17:49:24.534:ERROR / AndroidRuntime(19619):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2544)

05-22 17:49:24.534:ERROR / AndroidRuntime(19619):... 11更多

05-22 17:49:26.024:ERROR / PackageInstallationReceiver(17825):删除/data/local/tmp/com.example.admobsample.apk失败!

2 个答案:

答案 0 :(得分:2)

NPE的发生是因为layoutnull,即没有ID为R.layout.main的视图。

解释原始示例

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

您需要将属性android:id添加到LinearLayout(ID应与R.id.main不同)。

答案 1 :(得分:2)

修复NPE错误后,可能会出现进一步的错误。

在将布局高度和宽度添加到视图之前,必须先设置它。

AdView adView = new AdView(this, AdSize.BANNER, "a14dc6ed8aead31");
adView .setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
LinearLayout layout = (LinearLayout)findViewById(R.id.layoutMain);
layout.addView(adView);