我已經通過所有這些論壇尋找關於如何更改評級欄的大小(使星星變小)以及即時通訊不確定是否可以完成的答案?我看到了「定製漂亮評級欄」的教程,但我並沒有真正嘗試創造新的東西。我想要使用這些軟件包附帶的星星。我想要一個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>
可能重複[如何創建自定義的Android評級吧](http://stackoverflow.com/questions/5800657/how-to-create- Android的自定義評級欄 –