Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Android RatingBar

Tags: ratingbar void
public Void setListenerOnRatingBar()
{
ratingBar=(RatingBar)findViewById(R.id.ratingbar);
ratingBar.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
@Override public void onRatingChanged(RatingBar ratingBar, float v, boolean b) {
textview=(TextView)findViewById(R.id.textView);
textview.setText(String.valueOf(v));
}
});
}


This post first appeared on AR Programming, please read the originial post: here

Share the post

Android RatingBar

×

Subscribe to Ar Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×