以下のコードで AdMob バナーを作成するにはどうすればよいですか? 私は甘いゲームを完了しましたが、今は広告の宣伝に行き詰まっています:(. admobの公式の指示はSurfaceViewについて話しているのではありません.
public class MainActivity extends Activity implements OnTouchListener {
FastRenderView ren;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
try {
ren = new FastRenderView(this);
} catch (IOException e) {
e.printStackTrace();
}
ren.setOnTouchListener(this);
setContentView(ren);
class FastRenderView extends SurfaceView implements Runnable {
Thread renderThread = null;
SurfaceHolder holder;
...