我(第一次)在我的活动课程中使用 AdMob com.google.ads.AdView 标记。问题是当我打开活动时,我的文本视图和活动图像在 AdView 显示添加之后显示 1.2 秒,我的活动 TextView 和 ImageView 变为空白。我尝试以两种方式包含添加,但两者都显示添加和消失活动。
使用 XML 的 AdView:
**activity.xml**
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/result_Activity_Layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/love_result_background" >
<TableRow
android:id="@+id/mainLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="a1s310e4e43247c"
ads:loadAdOnCreate="true" />
</TableRow>
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*"
tools:context=".MyActivity" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/TextViewFirstName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:shadowColor="@color/name_Shadow"
android:shadowDx="2"
android:shadowDy="2"
android:shadowRadius="4"
android:text="@string/my_name"
android:textColor="@color/name_Text"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/TextViewFirstNameScore"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:shadowColor="@color/score_Shadow"
android:text="@string/result"
android:textColor="@color/score_Text"
android:textSize="26sp"
android:textStyle="bold" />
</TableRow>
</TableLayout>
</ScrollView>
</LinearLayout>
**activity.java**
// AdMobWidget in onCreate()
myAdView = (AdView)findViewById(R.id.adView);
myAdView.loadAd(new AdRequest());
AdView 使用 Activity :
我<com.google.ads.AdView />
在此方法中从 activity.xml 中删除
活动.java *
// following code use in onCreate() method
myAdView = new AdView(this, AdSize.BANNER, "a1s310e4e43247c");
LinearLayout rootView = (LinearLayout)this.findViewById(R.id.result_Activity_Layout);
LinearLayout.LayoutParams layoutParams = new LayoutParams(480, 75);
rootView.addView(myAdView, 0, layoutParams);
AdRequest re = new AdRequest();
re.setGender(AdRequest.Gender.UNKNOWN);
myAdView.loadAd(re);
*