For custom rating bar, is there a way to set the alpha on the images. Directly doing setAlpha on the rating bar doesn't seem to work at all.
Asked
Active
Viewed 108 times
1 Answers
0
If you're going to use setAlpha take care to check SDK, in case > 15 you need to use setImageAlpha() instead setAlpha()
if (SDK_INT > 15) {
ratingBar.setImageAlpha(255);
} else {
ratingBar.setAlpha(255);
}

Ciro Rizzo
- 492
- 4
- 8
-
ratingBar.setImageAlpha doesn't seem to be an option as it doesn't inherit any of the ImageView properties. – h8alp Jun 29 '15 at 13:13