Android Simple RatingBar Example - ANDROID - Helper

Monday, May 02, 2011

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/AVvXsEirtmdJduNt5Hxx7PqkVO184adDg40lPEfdzuyMldDDKe-xyyZLJSRA2dIxl-8AxWVcP8twb-0k1sbXOtzugp6pRS6GytrlDc87CCWl8QW53hXxJ0O_KNna74Fw_Tuzq3Nt2yHxzuiGMK0/

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQEocICywEZpDCUTzfmKHZ3Ce1fUwRuEvm2X_Iuzxd6IGYLe3BlEOLJf_IZuz-Zp0pxUtLDBHzFlisJRAwmU5gW6MMx_RZA4htjyJnitpEYbMN7wYq2EretWJkzxYrtNMvVpjhKM0FBwI/

3 comments: