ドキュメントには、コードに次のようなものを追加する必要があると書かれています。
// create a new layout
LinearLayout layout = new LinearLayout(this);
/*
Add any elements to your view
*/
// make the view visible
this.setContentView(layout);
final Activity act = this;
// now add the banner or overlay to the app
layout.post(new Runnable() { //what about this line?
public void run() {
myController = new AdController(act, MY_LB_SECTION_ID);
myController.loadAd();
}
});
私のレイアウトはxmlであり、すでに定義済みsetContentView(R.layout.config);
ですlayout.post(new Runnable() { line
。コードをどのように変更すればよいですか?