在main.xml中创建AdView

时间:2012-01-07 15:13:47

标签: android

我一直在尝试按照谷歌的说明进行操作 并在main.xml中创建我的Ab Banner

我已将以下代码添加到布局

<com.google.ads.AdView 
 android:id="@+id/adView"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 ads:adUnitId="a14df3a26341a7c"
 ads:adSize="BANNER"
 ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
 ads:loadAdOnCreate="true"
 />

在我的活动中,我正在使用

// Look up the AdView as a resource and load a request.
    AdView adView = (AdView)this.findViewById(R.id.adView);
    adView.loadAd(new AdRequest());

但它说无法解决(R.id.adView)

任何想法?我错过了一些愚蠢的话。 main.xml没有错误?

这是Full 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:background="@color/background" 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:padding="20dip"
android:orientation="horizontal" > 

<com.google.ads.AdView 
                     android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="a14df3a26341a7c"
                     ads:adSize="BANNER"                       
                     ads:loadAdOnCreate="true"
                     />


<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center"
>


<TextView  
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="center"
android:text="@string/main_title"
android:layout_marginBottom="2dip"
android:textSize="20sp" 
/>
<TextView  
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="center"
android:text="@string/web_page"
android:layout_marginBottom="5dip"
/>  
<Button
android:id="@+id/continue_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/continue_label"
/>
<Button
android:id="@+id/help_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/help_label"
/>
<Button
android:id="@+id/about_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/about_label"
/>
<Button
android:id="@+id/exit_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/exit_label"
android:layout_marginBottom="2dip"
/>  
<TextView  
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="center"
android:text="@string/copyright"
/>  
</LinearLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

您是否导入了外部jar?看到链接

http://www.youtube.com/user/thenewboston#p/search/99/a9Zf7d25eTs