Wednesday, December 26, 2012

Android - 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/AVvXsEiWUD2Bm_Kooawq6XncSgcUDBbomS8TC5jIkL8FyHTt1E7yX-fi2rHXKOi-C-rUN4kuRf-T_hfBakqRscWEJOwWff5QMWsQgno3l-dYO6O9Cz9GDpi2K8PxOMrbbXvvK8oB7fyFrgDxzgk/

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYPt52GTk5sacL9EEp9oZKF0zM7QDC4uXAIrjyq6ObYGQ0fK_JDSWopQ9Q_woHA00fIUZGGwaOUYhFCkBHPj_3qnabZxQf8czAyejVUwc5Bib-dS5EdDWsJ_brh4rsTcHlQb6p53Sw6m4/

No comments:

Post a Comment