화면의 윗부분 영역을 "ActionBar" 라고 하며 크기 3가지(NavigationContent영역, TitleContent영역, ActionContent영역)로 나뉩니다. 그리고 actionBarVisible속성으로 감출수도 있습니다.
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
actionBarVisible="{chkBox.selected}"
>
<s:navigationContent>
<s:Label text="navigationContent"/>
</s:navigationContent>
<s:titleContent>
<s:Label text="titleContent"/>
</s:titleContent>
<s:actionContent>
<s:Label text="actionContent"/>
</s:actionContent>
<s:HGroup width="100%" height="100%" verticalAlign="middle" horizontalAlign="center">
<s:Label text="ActionBar Visible" />
<s:CheckBox id="chkBox" selected="true"/>
</s:HGroup>
</s:View>
'Adobe Platform > Flex AIR Mobile' 카테고리의 다른 글
[FlexMobile] 메뉴 예제 (0) | 2014.12.28 |
---|---|
[FlexMobile] Flex Mobile 자습서 PDF 링크 (0) | 2014.12.24 |
[FlexMobile] Flex Mobile 링크모음 (0) | 2014.10.29 |
[FlexMobile] TextArea에서 스크롤 자동으로 넘기기 (0) | 2013.10.14 |
[FlexMobile] 슬립모드 방지 및 앱 종료 (2) | 2013.10.11 |