New Game 是 xml 中的一个按钮,单击 newGame 将运行该按钮。
<Button
android:id="@+id/button1"
android:layout_width="130dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:onClick="newGame"
android:text="@string/newgame" />
public void newGame(View view) {
if (startAppAd != null){
startAppAd.show();
startAppAd = null;
}
Intent intent = new Intent(this,MainActivity.class);
startActivity(intent);
finish();
}
问题是,广告会出现在上面的配置中。还是直接开始下一个活动??如果没有,请建议一种在单击按钮后展示广告的方法,然后开始新的活动。提前致谢
(我已经在模拟器中尝试过但它没有出现,我不知道问题是否是因为互联网)