2012-12-07 65 views
0

我已經通過所有這些論壇尋找關於如何更改評級欄的大小(使星星變小)以及即時通訊不確定是否可以完成的答案?我看到了「定製漂亮評級欄」的教程,但我並沒有真正嘗試創造新的東西。我想要使​​用這些軟件包附帶的星星。我想要一個10星的評價,所有的星星都適合在屏幕上,現在只有7個適合在屏幕上。基本上我希望它看起來像IMDB應用程序。評級系統,如果有人見過?謝謝您的幫助。我會粘貼一些代碼,但不是很多。較小的評分欄

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

<RatingBar 
    android:id="@+id/ratingBar1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:numStars="10" /> 

</LinearLayout> 
+0

可能重複[如何創建自定義的Android評級吧](http://stackoverflow.com/questions/5800657/how-to-create- Android的自定義評級欄 –

回答

1

我覺得唯一的辦法就是製作你自己定製的星形繪圖。即使它們只是可縮小系統星形的副本。

+0

我同意FoamyGuy自10系統明星是如此之大,以適應活動主要contentView –