下の画像のようなタイル リストを作成する必要があります。タイル リストの最後にボタンが含まれており、スクロール バー内に配置する必要があります。私は運がない既存の TileList を拡張しようとしました。
サンプルコード
public class CustomTileList extends TileList {
public function CustomTileList()
{
super();
}
protected var _button : Button ;
public function get button ( ) : Button {
return this._button ;
}
public function set button ( value : Button ) : void {
this._button = value;
}
override protected function createChildren():void
{
super.createChildren();
_button = new Button ();
_button .label = "More";
this.addChildAt( _button , super.numChildren - 1 );
}
}