Home » Android RatingBar Example

Android RatingBar Example

by Online Tutorials Library

Android RatingBar Example

android rating bar

Android RatingBar can be used to get the rating from the user. The Rating returns a floating-point number. It may be 2.0, 3.5, 4.0 etc.

Android RatingBar displays the rating in stars. Android RatingBar is the subclass of AbsSeekBar class.

The getRating() method of android RatingBar class returns the rating number.

Android RatingBar Example

Let’s see the simple example of rating bar in android.

activity_main.xml

Drag the RatingBar and Button from the pallete, now the activity_main.xml file will like this:

File: activity_main.xml

Activity class

Let’s write the code to display the rating of the user.

File: MainActivity.java

Output:

android rating bar example output 1 android rating bar example output 2

You may also like