vinchenson

Results 1 issues of vinchenson

Hello again, I have this code on a dialog fragment: ScaleRatingBar ratingBar = new ScaleRatingBar(requireContext()); ratingBar.setNumStars(5); ratingBar.setMinimumStars(1); ratingBar.setRating(3); ratingBar.setStarPadding(5); ratingBar.setStepSize(0.5f); ratingBar.setStarWidth(105); ratingBar.setStarHeight(105); ratingBar.setIsIndicator(false); ratingBar.setClickable(true); ratingBar.setScrollable(true); ratingBar.setClearRatingEnabled(false); ratingBar.setEmptyDrawableRes(R.drawable.new_star_empty); ratingBar.setFilledDrawableRes(R.drawable.new_star_full); ratingBar.setOnRatingChangeListener(new BaseRatingBar.OnRatingChangeListener()...