Android RatingBar自定義替換系統圖片

1.自定義替換提醒☆圖片,準備兩個圖片添加到系統中去:以下:android

在drewable下定義一個圖片資源ratingbar_drawable.xml佈局

<?xml version="1.0" encoding="utf-8"?> code

<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> xml

<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>ip

<item name="android:minHeight">48dip</item>utf-8

<item name="android:maxHeight">48dip</item>資源

</style> 以後定義佈局文件資源ratingbar.xml;get

<?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> 運行後的效果:

相關文章
相關標籤/搜索