我有这个 MXML,我想将它表示为 actionscript:
<s:titleContent>
<s:Label text="Title" fontWeight="bold" fontSize="20" height="20" verticalAlign="top" />
<s:Label text=".com" fontSize="12" height="17" verticalAlign="bottom" />
</s:titleContent>
我试过这个没有成功:
var chrome:ActionBar = new ActionBar();
chromeTitle.text = "Title";
chrome.setStyle("fontSize", 20);
chrome.title = "Title";
chrome.title = chromeTitle;
如何将 css 样式的文本添加到操作栏(多个标签)?是否可以让其他视图继承此操作栏,这样我就不必复制代码(所有视图都有共同的元素)?