左右展开
<p>左右展开动画有一条固定线。默认情况下,固定线为窗口居中垂直线。</p>
<h2>固定点在左边</h2>
<h4>效果图</h4>
<p><img src="http://www.skinui.cn/doc/img/5.0/5/LeftRightExpand1.gif" alt="固定点在左边" /></p>
<h4>布局文件</h4>
<pre><code class="language-xml"><Dialog DefaultWidth="600" DefaultHeight="450" SysButton="CLOSE" Icon="128" Caption="IDS_APP_NAME" Animation="LeftRightExpand" 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/LeftRightExpand2.gif" alt="固定点在中间" /></p>
<h4>布局文件</h4>
<pre><code class="language-xml"><Dialog DefaultWidth="600" DefaultHeight="450" SysButton="CLOSE" Icon="128" Caption="IDS_APP_NAME" Animation="LeftRightExpand">
<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/LeftRightExpand3.gif" alt="固定点在右边" /></p>
<h4>布局文件</h4>
<pre><code class="language-xml"><Dialog DefaultWidth="600" DefaultHeight="450" SysButton="CLOSE" Icon="128" Caption="IDS_APP_NAME" Animation="LeftRightExpand" FixedPoint="600,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>