我设法将 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 添加到游戏本身?