Flex Builder
我用,开发我的应用程序Adobe AIR
。我想创建类似于Adobe Reader
左侧菜单。我该怎么做?
问问题
531 次
1 回答
0
我现在不在我的办公桌附近,但也许像“SplitViewNavigator”这样的东西可能是一个好方法。
从提供的链接粘贴的代码:
<s:SplitViewNavigator id="svn" width="100%" height="100%">
<s:ViewNavigator id="leftNav" width="30%" height="100%" firstView="views.LeftView"/>
<s:ViewNavigator id="rightNav" width="100%" height="100%" firstView="views.RightView"/>
</s:SplitViewNavigator>
DevGirl 有一篇很棒的文章,里面有一个很好的例子,你可以把它作为你想要实现的目标的基础。
http://devgirl.org/2011/12/01/flex-mobile-development-splitviewnavigator-tutorial/
于 2015-05-30T18:44:33.997 回答