[flex] Quotes from tips for performance

[b][size=medium]1. Architecting Flex Applications That Perform Well[/size][/b]

1) Use the Flex navigator containers (Accordion, TabNavigator, and ViewStack). Flex navigator containers help control the creation of child views with [b]deferred instantiation[/b].

2) Dashboard-style. This type of application organizes content into modular, self-contained views. This approach performs well because it organizes complex views, with Flex creating them when the user drills down.

[b][size=medium]2. Using Layouts, Hierarchy, and Containment Properly[/size][/b]

The [b]biggest[/b] Flex performance danger is yielding to the temptation to use containers randomly. [b]Principle[/b]: Avoid unnecessary container nesting.

1) Avoid Nesting Containers Many Levels Deep

Below are an example of deeply nested code:


<mx:VBox>
<mx:HBox>
<mx:Form>
<mx:FormItem>
.....
...
</mx:FormItem>
</mx:Form>
</mx:HBox>
</mx:VBox>


Typically, nesting fewer containers provides good results with respect to creation time.

2) Absolute Positioning and Sizing

The calculations to decipher how big each container and its children are, as well as where to place them, can potentially be resource-intensive. Here are two tips that can help reduce these calculations:

i. Hard-code object positions

Absolute positioning does not work well if you want your application to resize when the browser window resizes. Using the Canvas container to create faster layouts should be a last-resort solution.

ii. Hard-code object widths and heights

This technique works with any container or control.

3) Use Grid Containers Wisely

You should only use a Grid container when your controls must line up both horizontally and vertically.

Some common misuses of Grid containers include the following:

a) Using the Grid container when you want to left-justify or right-justify controls in the same container (see Figure 3). Developers often try to do this using the following code:


<mx:Grid borderStyle="solid" width="400">
<mx:GridRow>
<mx:GridItem horizontalAlign="left">
<mx:Button label="left" />
</mx:GridItem>
<mx:GridItem horizontalAlign="right">
<mx:Button label="right" />
</mx:GridItem>
</mx:GridRow>
</mx:Grid>


However, using an HBox container with a Spacer object to fill unwanted space works the exact same way, as shown in the following snippet:


<mx:HBox borderStyle="solid" width="400">
<mx:Button label="left" />
<mx:Spacer width="100%" />
<mx:Button label="right" />
</mx:HBox>


b) Using a Grid container as a child of a Repeater object when alternate mechanisms would work better. Alternatively, you can achieve it with a List control and a custom cell renderer.

[b][size=medium]3. Examples of Common Container Redundancies to Avoid[/size][/b]

1) The VBox container inside an <mx:Panel> tag

A Panel container is a VBox container other Panel styles. For example, instead of writing this:


<mx:Panel title="Grocery List" width="150" height="150">
<mx:VBox>
<mx:Label text="Fruits" />
<mx:Label text="Veggies" />
<mx:Label text="Cookies" />
</mx:VBox>
</mx:Panel>


Use this code instead:


<mx:Panel title="Grocery List" width="150" height="150">
<mx:Label text="Fruits" />
<mx:Label text="Veggies" />
<mx:Label text="Cookies" />
</mx:Panel>


2) VBox container inside an <mx:Application> tag

An Application object is inherently a VBox container layout.

3) Containers as top-level tags for MXML components

You do not need to use a container tag as the top-level tag of your MXML component definition. It is perfectly valid for an MXML component to be a simple control, like:


<mx:Image xmlns:mx=http://www.macromedia.com/2003/mxml source="@embed('foo.jpg')" width="200" height="200" />


4) Container wrappers for an MXML component instance

There is no need to wrap a container around an MXML component tag.


<mx:VBox backgroundColor=" #FFCCCC" borderStyle=" solid">
<myComponent xmlns=" *" />
</mx:VBox>


can be changed to:


<myComponent xmlns=" *" backgroundColor=" #FFCCCC" borderStyle=" solid" />


5) Re-evaluate your container choices

[b][size=medium]4. Using Deferred Instantiation to Improve Perceived Performance[/size][/b]

Containers have a [b]creationPolicy[/b] property that you set to specify when Flex should create the container (at startup, incrementally, when a user navigates to that container, or based on other user action).

The following list explains what each [i]creationPolicy [/i]property does when set on Flex navigator containers:

1) creationPolicy="auto"

on navigator containers: it loads quickly, but users experience a brief pause the first time they navigate from one view to another.
on non-navigator containers: must add extra code to specify when to create the container's children.

2) creationPolicy="all"

When Flex creates the navigator containers, it creates all of the controls in all their child views.

3) creationPolicy="none"

You explicitly instantiate views with the createComponents() method. Flex doesn't instantiate for you.

4) creationPolicy="queued"

Flex creates all containers and then creates the children of the queued containers in the order in which they appear in the application unless you specify a creationIndex property.

[b]Progressive Layout—Queued Creation of Components[/b]

Progressive layout is similar to the way HTML applications load content in succession in a client.

More detailed info can be found [url=http://www.adobe.com/devnet/flex/articles/prog_layout.html]here[/url].

[size=medium][b]5. Handling Large Data Sets[/b][/size]

Paging and sorting can be incorporated to handle large data sets.

[size=medium][b]6. Playing Complex Effects Smoothly[/b][/size]

to be continued

[size=medium][b]7. Achieving Great Performance with Runtime Styles[/b][/size]

to be continued

[size=medium][b]8. Improving a Repeater Object's Performance[/b][/size]

to be continued

[size=medium][b]9. Performance Tuning and Profiling Your Own Flex Application[/b][/size]

1) Use RSLs

2) Use the actionscript profiler

3) Calculate the intialization time


<?xml version="1.0" encoding="iso-8859-1"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" creationComplete="doLater(this,'doneNow')">
<mx:Script><![CDATA[
var dp = [{food:"apple", type:"fruit", color:"red"}, {food:"potato", type:"vegetable", color:"brown"}, {food:"pear", type:"fruit", color:"green"},
{food:"orange", type:"fruit", color:"orange"},{food:"spinach", type:"vegetable", color:"green"},{food:"beet", type:"vegetable", color:"red"}];
function doneNow()
{
doLater(this, "reallyDoneNow");
}
function reallyDoneNow()
{
timerLabel.text += getTimer() + " ms"
}
]]></mx:Script>
<mx:Form>
<mx:FormHeading label="Sample Form" />
<mx:FormItem label="List Control">
<mx:List dataProvider="{dp}" labelField="food"/>
</mx:FormItem>
<mx:FormItem label="DataGrid control">
<mx:DataGrid width="200" dataProvider="{dp}"/>
</mx:FormItem>
<mx:FormItem label="Date controls">
<mx:DateChooser />
<mx:DateField />
</mx:FormItem>
<mx:FormItem label="Load Time">
<mx:Label id="timerLabel" fontSize="12" fontWeight="bold" text="The application initialized in "/>
</mx:FormItem>
</mx:Form>
</mx:Application>


4) Use getTimer() to time component and data gestures

Check out this [url=http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=1017]blog entry[/url].


[url=http://www.adobe.com/devnet/flex/articles/client_perf.html]Original Artical[/url]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值