Ich kann adMob zum Titelbildschirm hinzufügen, dessen Layout in einer * .xml-Datei geschrieben ist.So fügen Sie AdMob zur ViewClass in Android hinzu
setContentView(R.layout.main);
AdView adView = (AdView)findViewById(R.id.ad);
adView.requestFreshAd();
main.xml enthält:
<?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>
Das Spiel selbst in tttview geschrieben.
public class TttView extends View
Die Aktivität Game.java eine Instanz von tttview erstellen und verwendet setContent (tttview) als Layout zu verwenden.
public class Game extends Activity{
private TttView tttView;
.
.
.
setContentView(tttView);
}
Wie kann ich adMob zum Spiel selbst hinzufügen?