2

我设法将 adMob 添加到标题屏幕,该布局写在 *.xml 文件中。

setContentView(R.layout.main); 
AdView adView = (AdView)findViewById(R.id.ad);
adView.requestFreshAd();

main.xml 包含:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:myapp="http://schemas.android.com/apk/res/de.xazen.tictactoe"
      android:background="@drawable/title"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      >
      <com.admob.android.ads.AdView
                android:id="@+id/ad"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                myapp:backgroundColor="#000000"
                myapp:primaryTextColor="#FFFFFF"
                myapp:secondaryTextColor="#CCCCCC" 
                /> 
</RelativeLayout>

游戏本身是用 Tttview 编写的。

public class TttView extends View

Activity Game.java 创建一个 TttView 实例并使用 setcontent(tttView) 将其用作布局。

public class Game extends Activity{

    private TttView tttView;
    .
    .
    .
    setContentView(tttView);
}

如何将 adMob 添加到游戏本身?

4

1 回答 1

0

好吧,从您的问题来看,tttView 是什么或它是如何设置的并不明显,但是如果它创建了一个布局类型来显示,您可以通过编程方式将 AdView 添加到 LinearLayout 或类似的东西中,如下所示:

    // Setup layout parameters
    LinearLayout.LayoutParams params;
    params = new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.FILL_PARENT, 
            LinearLayout.LayoutParams.WRAP_CONTENT);

    // Create a linear layout
    LinearLayout layout = new LinearLayout(mContext);
    layout.setOrientation(LinearLayout.VERTICAL);
    layout.setPadding(6,6,6,6);

    AdView mAdView = new AdView(this);
    layout.addView(mAdView,params);

或者,如果您从 XML 文件加载布局,您可以执行与上面类似的操作

    setContentView(R.layout.game); 

game.xml 在哪里:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/de.xazen.tictactoe"
android:background="@drawable/title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<tttView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ...
    />
<com.admob.android.ads.AdView
        android:id="@+id/ad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        myapp:backgroundColor="#000000"
        myapp:primaryTextColor="#FFFFFF"
        myapp:secondaryTextColor="#CCCCCC" 
        /> 
</RelativeLayout>
于 2011-01-28T14:06:42.107 回答