實現源碼:
ratingBar1.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
@Override
public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
ratingBar.setRating(rating);
textView.setText("您選擇了"+rating+"個星星");
}
};
.xml文件
style="?android:attr/ratingBarStyleSmall" 加上這句就不行了,去掉就沒問題
android:id="@+id/ratingBar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:stepSize="0.5"
android:rating="3"/>
你看看那個樣式裡面是什麼,沒准把效果給取消了