首页 > 其他 > 详细

自定义Ratingbar 评分控件

时间:2014-04-15 15:23:35      阅读:673      评论:0      收藏:0      [点我收藏+]

1.自定义替换提醒图片,准备两个图片添加到系统中去:如下:

 

 

 bubuko.com,布布扣      bubuko.com,布布扣

 

在drewable下定义一个图片资源ratingbar_drawable.xml

<?xml version="1.0" encoding="utf-8"?> 
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 
 
<item 
    android:id="@+android:id/background" 
    android:drawable="@drawable/unselect">
</item> 
<item 
    android:id="@+android:id/secondaryProgress" 
    android:drawable="@drawable/unselect">
</item> 
<item 
    android:id="@+android:id/progress" 
    android:drawable="@drawable/selected">
</item> 
 
</layer-list> 

 

之后再styles.xml下添加一个标签,这个style继承父style   Widget.RatingBar

<style name="roomRatingBar" parent="@android:style/Widget.RatingBar"> 
 
<item name="android:progressDrawable">@drawable/ratingbar_drawable</item> 
 
<item name="android:minHeight">48dip</item> 
 
<item name="android:maxHeight">48dip</item> 
 
</style> 
之后定义布局文件资源ratingbar.xml;

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <RatingBar 
        android:layout_width="match_parent" 
	    android:layout_height="wrap_content"
	    style="@style/roomRatingBar" 
	    android:layout_marginLeft="10dip" 
	    android:id="@+id/ratingbar"
	    android:rating="1.5"
	    android:stepSize="0.15"
	    android:numStars="8"
	/>
</LinearLayout>
运行后的效果:

  bubuko.com,布布扣

 

bubuko.com,布布扣

 

 

 

自定义Ratingbar 评分控件,布布扣,bubuko.com

自定义Ratingbar 评分控件

原文:http://www.cnblogs.com/wsfjlagr/p/3663286.html

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