Skip to content Skip to sidebar Skip to footer

Using Rating Bar In Android

I have a rating Bar Copy

Also, try to add those to make it not editable:

android:isIndicator="true"android:focusable="false"android:clickable="false"

Solution 2:

Try this..

RatingBarratingBar= (RatingBar)findViewById(R.id.RATINGinitialvalueratingID);
ratingBar.setRating(5);
ratingBar.setFocusable(false);

Post a Comment for "Using Rating Bar In Android"