首页 > 其他 > 详细

Progressbar自定义大小

时间:2014-12-23 22:36:34      阅读:264      评论:0      收藏:0      [点我收藏+]

1、默认的圆形进度条有点大,自己可以改小一点

(1)引用自定义的style

    <ProgressBar
        android:id="@+id/footer_progressbar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"
        style="@style/CustomProgressStyle"
        android:layout_toLeftOf="@id/footer_text"/>

(2)自定义style

<style name="CustomProgressStyle" parent="@android:style/Widget.ProgressBar.Large">    
     <item name="android:minWidth">23dip</item>    
     <item name="android:maxWidth">23dip</item>    
     <item name="android:minHeight">23dip</item>    
     <item name="android:maxHeight">23dip</item>    
</style>  

Done!

Progressbar自定义大小

原文:http://www.cnblogs.com/xingyyy/p/4181229.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!