Androidアプリケーションで複数のレイアウトを使用しています。setContentViewでレイアウトを変更すると、AdMobバナーが消えます。レイアウトを変更するときに必要なことはありますか。
public void setContentView (int layoutResID)
{
super.setContentView(layoutResID);
// Create the adView
try {
// Lookup your LinearLayout assuming it's been given
// the attribute android:id="@+id/mainLayout"
RelativeLayout layout = (RelativeLayout)
findViewById(getRespectiveLayoutID(layoutResID));
//adView.setGravity(Gravity.BOTTOM);
// Add the adView to it
layout.addView(adView);
// Initiate a generic request to load it with an ad
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
`私は本当に助けていただければ幸いです