2

我(第一次)在我的活动课程中使用 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);

*

4

2 回答 2

0

我只是android:orientation="vertical"在我的线性布局中包含以下行,我的 Add 开始工作。yappiiii .... 几个小时后我得到了那个解决方案

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
     >

我发现该android:padding="5dp"标签不应在 AdView 的主布局中使用,否则会出现以下错误。 Not enough space to show ad! Wants: 480, 75, Has: 320, 52

Leo Landau 感谢您的帮助 :)

于 2013-02-07T19:07:05.223 回答
0

在我看来,您可能正在尝试加载广告两次。我建议从 java 中删除所有 AdView 引用。您无需致电:

myAdView = (AdView)findViewById(R.id.adView);
myAdView.loadAd(new AdRequest());

因为你已经ads:loadAdOnCreate="true"在 XML 中设置了。

另一个建议

尝试从 XML 和 Java 中删除 AdView 内容,以查看 Activity 是否以这种方式正确显示。

于 2013-02-06T18:52:24.780 回答