android自定义progressbar图片大小自适应

来源:互联网 发布:python入门马哥教育 编辑:程序博客网 时间:2024/05/22 12:19
通过animation-list 动画自定义的progressbar样式,如果progressbar设置的长度和宽度超过了动画中图片的大小,效果会很难看,通过如下方式可解决。

<animation-list xmlns:andro    android:variablePadding="true" >    <item android:duration="40">        <clip            xmlns:andro            android:clipOrientation="horizontal"            android:drawable="@drawable/loading_70px_001"            android:gravity="left" >        </clip>    </item>    <item android:duration="40">        <clip            xmlns:andro            android:clipOrientation="horizontal"            android:drawable="@drawable/loading_70px_100"            android:gravity="left" >        </clip>    </item></animation-list>
0 0
原创粉丝点击