2008年9月19日金曜日

HTMLLayoutの覚書[doja]

ちょっと覚書

クラス HTMLLayout
http://www.rcdtokyo.com/man/doja/api/com/nttdocomo/ui/HTMLLayout.html

DojaでPanelを利用するとき、Componentの配置にはHTMLLayoutを使うと、その名の通りHTMLライクに配置が出来る。

例えば、こういうHTMLソースがあったとする。
some text
<br>
<center>
<button id="1">
<button id="2">
</center>

HTMLLayoutを使って、こんな感じで書ける。(pはPanelのインスタンス、lmはHTMLLayoutのインスタンス、labelは"some text"のLabelクラス)
p.add(label);
lm.br();
lm.begin(HTMLLayout.CENTER);
p.add(button1);
p.add(button2);
lm.end();

0 件のコメント: