欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中点击按钮获取星级评分条的评分

程序员文章站 2022-07-02 13:16:25
场景 效果 注: 博客: https://blog.csdn.net/badao_liumang_qizhi 关注公众号 霸道的程序猿 获取编程相关电子书、教程推送与免费下载。 实现 将布局改为LinearLayout,并通过android:orientation="vertical">设置为垂直布 ......

场景

效果

Android中点击按钮获取星级评分条的评分

 

 

Android中点击按钮获取星级评分条的评分

注:

博客:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

将布局改为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();;
            }
        });
    }
}