Android自定义RatingBar(星级评分控件)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android自定义RatingBar(星级评分控件)相关的知识,希望对你有一定的参考价值。
参考技术A RatingBar是基于SeekBar(拖动条)和ProgressBar(状态条)的扩展,用星形来显示等级评定!RatingBar实现的效果图:
看着自定义的样式远远比android自带的样式好看多了,用户体验度远远提升,下面我们就来实现该控件:
定义根据图片自定一个RatingBar的背景条,和图片放到同一个目录下面
five_rating_bar.xml
backgroud:是用来填充背景图片的,和进度条非常类似,当我们设置最高评分时(android:numStars),系统就会根据我们的设置,来画出以星星为单位的背景(假如android:numStars="5",就会画出5颗灰色的星星)
progress:是用来在背景图片基础上进行填充的指示属性(和进度条类似,第一进度位置)
secondaryProgress:同progress一样属于第二进度位置(如果不定义这个,进度条拖动,每次就画出一整颗星星(亮),第二进度(暗)没有覆盖掉第一进度之后的位置,从左往右是拖不出来N.5颗星星的,这样评分效果就不完整)
style.xml
提取样式属于个人习惯,这里可以不提取出来,可以写在布局文件中,这里RatingBar的样式是通过style来切换的。
通过 parent属性来选择继承的父类,我们这里继承RatingBar类。
重新定义 progressDrawable属性(RatingBar的背景条)
maxHeight和minHeight可以根据我们图片像素或者其他参考值来设定。
在我们需要用到RatingBar的xml配置文件里面添加RatingBar控件。
main.xml
android:isIndicator RatingBar是否是一个指示器(用户无法进行更改)
android:numStars 显示的星型数量,必须是一个整形值,像“100”。
android:rating 默认的评分,必须是浮点类型,像“1.2”。
android:stepSize 评分的步长,必须是浮点类型,像“1.2”。
就这么简单,我们自定义属于自己的RatingBar,星级评分控件!
Android中点击按钮获取星级评分条的评分
场景
效果
注:
博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
实现
将布局改为LinearLayout,并通过android:orientation="vertical">设置为垂直布局,然后添加一个RatingBar,并通过
android:rating="5"
设置其星数为5
然后再添加一个Button,分别给他们添加Id。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".RatingBarActivity"> <RatingBar android:id="@+id/ratingBar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:rating="5" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#FF5000" android:text="发表评价" /> </LinearLayout>
然后来到Activity,通过Id获取RatingBar和Button,在button的点击事件中,获取星级数,并提示。
packagecom.badao.relativelayouttest; importandroidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.RatingBar; importandroid.widget.Toast; public class RatingBarActivity extends AppCompatActivity { private RatingBarratingBar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_rating_bar); ratingBar = (RatingBar) findViewById(R.id.ratingBar); Button button = (Button) findViewById(R.id.btn); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { float rating = ratingBar.getRating(); Toast.makeText(RatingBarActivity.this,"你的评分为:"+rating+"分",Toast.LENGTH_SHORT).show();; } }); } }
以上是关于Android自定义RatingBar(星级评分控件)的主要内容,如果未能解决你的问题,请参考以下文章