Tuesday, November 13, 2012

Android Simple RatingBar Example


SIMPLE RATINGBAR

SOURCE CODE [main.xml] is

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
   
<RatingBar android:id="@+id/ratingbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
   
                <TextView android:id="@+id/rating"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
   
</LinearLayout>

SOURCE CODE [RatingBarExample.java] is

package com.RatingBarExample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.RatingBar;
import android.widget.TextView;
import android.widget.RatingBar.OnRatingBarChangeListener;

public class RatingBarExample extends Activity
{

                RatingBar ratingbar;
                TextView ratings;

                public void onCreate(Bundle savedInstanceState)
{
                                super.onCreate(savedInstanceState);
                                setContentView(R.layout.main);

                                ratings = (TextView) findViewById(R.id.rating);
                                ratingbar = (RatingBar) findViewById(R.id.ratingbar);

                                ratingbar.setOnRatingBarChangeListener(new OnRatingBarChangeListener()
{
                                                public void onRatingChanged(RatingBar ratingBar, float rating,
                                                                                boolean fromUser)
{
                                                                // TODO Auto-generated method stub
                                                                ratings.setText("The Rating is " + rating);
                                                }
                                });
                }
}

The OUTPUT will be

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgenYHOX0t0EbO8mRHjdR24IOYAslAljm4p54Fg5PFrtrE0yJpW3svckWVTbHX_PqiiRSR_P0d2o0Idy553vNAO_c65Pc_tdd1rToB_8hOp1BVOqgzqzrvbGxuUj07afHOTZccIzi6SMjA/

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5ByN78Z_B49VROLTJQ71jqdCrTindgTjTFP0nUQQPcQ9qKTcDv3e4KL5fw-kEZA3E1JfKUw1dKClAhmSZzGPNaYT35Q5EgOEyzJaifIilyJYLWIJuSqqxCtKi1iwuxbh_bB6PUx-om-M/