上下展开
<p>上下展开动画有一条固定线。默认情况下,固定线为窗口居中水平线。</p>
<h2>固定点在上边</h2>
<h4>效果图</h4>
<p><img src="http://www.skinui.cn/doc/img/5.0/5/TopBottomExpand1.gif" alt="固定点在上边" /></p>
<h4>布局文件</h4>
<pre><code class="language-xml"><Dialog DefaultWidth="600" DefaultHeight="450" SysButton="CLOSE" Icon="128" Caption="IDS_APP_NAME" Animation="TopBottomExpand" FixedPoint="0,0">
<RelativeLayout AlignParentLeft="40" AlignParentTop="80" AlignParentRight="40" AlignParentBottom="40" Background="ID_COLOR_DEFAULT1">
<TextView Width="MatchParent" Height="WrapContent" AlignParentTop="0" HorzAlign="Left" MultiLine="true" Text="IDS_TEST_TEXT" />
</RelativeLayout>
</Dialog></code></pre>
<h2>固定点在中间</h2>
<h4>效果图</h4>
<p><img src="http://www.skinui.cn/doc/img/5.0/5/TopBottomExpand2.gif" alt="固定点在中间" /></p>
<h4>布局文件</h4>
<pre><code class="language-xml"><Dialog DefaultWidth="600" DefaultHeight="450" SysButton="CLOSE" Icon="128" Caption="IDS_APP_NAME" Animation="TopBottomExpand">
<RelativeLayout AlignParentLeft="40" AlignParentTop="80" AlignParentRight="40" AlignParentBottom="40" Background="ID_COLOR_DEFAULT1">
<TextView Width="MatchParent" Height="WrapContent" AlignParentTop="0" HorzAlign="Left" MultiLine="true" Text="IDS_TEST_TEXT" />
</RelativeLayout>
</Dialog></code></pre>
<h2>固定点在下边</h2>
<h4>效果图</h4>
<p><img src="http://www.skinui.cn/doc/img/5.0/5/TopBottomExpand3.gif" alt="固定点在下边" /></p>
<h4>布局文件</h4>
<pre><code class="language-xml"><Dialog DefaultWidth="600" DefaultHeight="450" SysButton="CLOSE" Icon="128" Caption="IDS_APP_NAME" Animation="TopBottomExpand" FixedPoint="0,450">
<RelativeLayout AlignParentLeft="40" AlignParentTop="80" AlignParentRight="40" AlignParentBottom="40" Background="ID_COLOR_DEFAULT1">
<TextView Width="MatchParent" Height="WrapContent" AlignParentTop="0" HorzAlign="Left" MultiLine="true" Text="IDS_TEST_TEXT" />
</RelativeLayout>
</Dialog></code></pre>