博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RatingBar
阅读量:5748 次
发布时间:2019-06-18

本文共 1259 字,大约阅读时间需要 4 分钟。

一、RatingBar

Activity代码

public class RatingBarDemoActivity extends Activity {

    private RatingBar rb=null;

    /** Called when the activity is first created. */

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

        rb=(RatingBar)findViewById(R.id.ratingbar1);

        rb.setOnRatingBarChangeListener(new ClickRatingBar());

}

//设置监听器

    class ClickRatingBar implements RatingBar.OnRatingBarChangeListener{

 

       @Override

       public void onRatingChanged(RatingBar ratingBar, float rating,

              boolean fromUser) {

           // TODO Auto-generated method stub

           Toast.makeText(RatingBarDemoActivity.this, rating+"", Toast.LENGTH_LONG).show();

           

       }

    

    }

}

Main.xml代码:

<?xmlversion="1.0"encoding="utf-8"?>

<LinearLayoutxmlns: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/ratingbar1"

    android:layout_width="wrap_content" 

    android:layout_height="wrap_content"

    android:numStars="5"

    android:stepSize="0.5"

    />

</LinearLayout>

 

 

转载于:https://www.cnblogs.com/itfenqing/archive/2011/08/29/4429513.html

你可能感兴趣的文章
POI getDataFormat() 格式对照
查看>>
实现java导出文件弹出下载框让用户选择路径
查看>>
刨根问底--技术--jsoup登陆网站
查看>>
Spring--通过注解来配置bean
查看>>
nginx rewrite
查看>>
前端安全系列(一):如何防止XSS攻击?
查看>>
查看Linux并发连接数
查看>>
CSS中规则@media的用法
查看>>
pychecker:分析你的python代码
查看>>
我的友情链接
查看>>
DNS显性+隐性URL转发原理
查看>>
我的友情链接
查看>>
网易有道 IP地址、手机号码归属地和身份证 查询接口API
查看>>
鼠标停留在GridView某一行时行的颜色改变
查看>>
系列3:WAS Liberty Profile hello mysql jdbc
查看>>
基础知识:python模块的导入
查看>>
Android MVC之我的实现
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
关于批处理-1
查看>>