如何让Admob adblock脱离屏幕中心?

时间:2013-06-25 02:11:34

标签: android admob

我是Android开发的新手,我正在尝试学习如何将Admob添加到退出的应用中。使用Admob SDK说明我已经能够在我尝试过的几个应用程序上成功完成此操作。然而,我有一个对于我的生活,我不能像它应该的那样去到屏幕的底部。我在main.xml中知道它的东西,但我无法弄明白。

以下是我现在的代码,它将广告块放在屏幕中央:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:background="@drawable/bg">

<ImageView android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:src="@drawable/eight_ball"
    android:layout_gravity="center_vertical" 
    android:layout_margin="10px" />
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linearLayout"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center">
        <TextView android:id="@+id/MessageTextView" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_gravity="center" 
            android:background="@drawable/triangle" 
            android:text="@string/shake_me_caption" 
            android:focusable="false" 
            android:gravity="center_vertical|center"
                            android:layout_marginTop="14dip">
        </TextView>
</LinearLayout>
</FrameLayout>

我的主要活动java文件的一部分处理这个:

    @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    initialization();
    // Adding AdMob banner
    adView = new AdView(this, AdSize.BANNER, MY_AD_UNIT_ID); 
    LinearLayout layout = (LinearLayout)findViewById(R.id.linearLayout);
    layout.addView(adView); 
    adView.loadAd(new AdRequest());
}

正如我所说,我非常确定它需要工作的main.xml(可能还会对主要活动中的代码进行一些调整),但无论我尝试过什么,广告块都会留在中心或者完全消失了。

提前致谢。

1 个答案:

答案 0 :(得分:1)

<com.google.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
         android:id="@+id/adView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        ads:adUnitId=""
        ads:adSize="BANNER"
        ads:loadAdOnCreate="true"/>

将此代码放在您想要放置的xml文件中。你不需要编写你在java文件中编写的代码。

只需将此代码插入xml即可。就这样。 欢呼声。