How to create Custom Ratings bar in Android

前端 未结 13 1391
故里飘歌
故里飘歌 2020-11-22 06:28

Hello all i need to perform Ratings in my application... SO i need to create custom Ratings bar... Can Anyone Help me in this?

13条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 07:13

    I investigated the original source,
    and here is my result.

    styles.xml (res/values)

    
    
    

    ratingbar_full.xml (res/drawable)

    
    
        
        
        
    
    

    btn_rating_star_off_normal.png (res/drawable-xxhdpi)

    btn_rating_star_on_normal.png (res/drawable-xxhdpi)

    activity_ratingbar.xml (res/layout)

    
    
    
        
    
    

    This is the result.

    • Note that I added the actual height(13.4dp) of ratingbar in layout_height property, because if it is wrap_content it will draw lines below stars. (in my case only in a preview of Android Studio)

提交回复
热议问题