码迷,mamicode.com
首页 > 其他好文 > 详细

自定义RatingBar

时间:2017-02-13 13:39:18      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:custom   second   block   blog   bsp   bar   utf-8   分享   android   

3.layer-list   
简介:
将多个图片或上面两种效果按照顺序层叠起来
例如:

在布局文件中A.xml中:

 
<RatingBar
android:id="@+id/rb_star"
android:layout_width="wrap_content"
android:layout_height="15dp"
android:layout_below="@+id/tv_name"
android:layout_marginTop="4dp"
android:layout_toRightOf="@+id/iv_icon"
android:isIndicator="true"
android:progressDrawable="@drawable/custom_ratingbar"
android:rating="2" />
 
在状态选择器custom_ratingbar.xml中:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- android:id="@android:id/background" 系统自带Id-->
<item
 
android:id="@android:id/background"
android:drawable="@drawable/rating_small_empty"
/>
 
<item
android:id="@android:id/secondaryProgress"
android:drawable="@drawable/rating_small_half"
/>
 
<item
android:id="@android:id/progress"
android:drawable="@drawable/rating_small_full"
/>
 
</layer-list>
 
 
技术分享
 注意:shape ,selector ,layer-list详细解析:
http://blog.csdn.net/brokge/article/details/9713041

自定义RatingBar

标签:custom   second   block   blog   bsp   bar   utf-8   分享   android   

原文地址:http://www.cnblogs.com/SoulCode/p/6393275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!