码迷,mamicode.com
首页 > 移动开发 > 详细

Android --RatingBar的使用

时间:2014-09-19 16:54:26      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   os   使用   java   

1.效果图

bubuko.com,布布扣bubuko.com,布布扣

 

2.代码

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

    <RatingBar
        android:id="@+id/ratingBar1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </RatingBar>

</LinearLayout>

firstActivity.java

final RatingBar mRating = (RatingBar) findViewById(R.id.ratingBar1); // 获取对象
        mRating.setMax(100); // 设置最大值
        mRating.setNumStars(5); // 设置星型数量
        mRating.setStepSize((float) 0.5); // 设置步长
        mRating.setRating((float) 3.5);
        
        mRating.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {

            @Override
            public void onRatingChanged(RatingBar ratingBar, float rating,
                    boolean fromUser) {
                // TODO Auto-generated method stub
                a = mRating.getRating();// 设置当前分数
                Toast.makeText(firstActivity.this, "当前的分数为:" + a * 20,
                        Toast.LENGTH_SHORT).show();
            }
        });

 



 

Android --RatingBar的使用

标签:android   style   blog   http   color   io   os   使用   java   

原文地址:http://www.cnblogs.com/SM-t/p/3981559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!