Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Listener not working on DialogFragment #89

Open
vinchenson opened this issue Aug 21, 2020 · 1 comment
Open

Listener not working on DialogFragment #89

vinchenson opened this issue Aug 21, 2020 · 1 comment

Comments

@vinchenson
Copy link

vinchenson commented Aug 21, 2020

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() {
@OverRide
public void onRatingChange(BaseRatingBar ratingBar, float rating, boolean fromUser) {
Log.e(TAG, "onRatingChange: " + rating);
}
});

When the app is running and dialogfragment is shown, whenever I touch the stars, the log.e error does not show into logcat.

What might be the issue?

@grrigore
Copy link

grrigore commented May 6, 2021

I'm having the same problem. Any fixes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants